From df361236f512e1707270b070141cdff45eb92e0f Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Wed, 24 Feb 2021 15:18:32 +0200 Subject: [PATCH] Hotfix: Containers total weight now showing correctly on inventory tab --- .../ui/properties/components/inventory/ContainerCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/imports/ui/properties/components/inventory/ContainerCard.vue b/app/imports/ui/properties/components/inventory/ContainerCard.vue index fcb280f0..6a922cdb 100644 --- a/app/imports/ui/properties/components/inventory/ContainerCard.vue +++ b/app/imports/ui/properties/components/inventory/ContainerCard.vue @@ -17,7 +17,7 @@ > $vuetify.icons.weight - {{ (model.contentsWeight ? 0 : model.contentsWeight || 0) + (model.weight || 0) }} + {{ (model.contentsWeightless ? 0 : model.contentsWeight || 0) + (model.weight || 0) }}