From fc3f28a47b8fed68b2333193e44292db1efafa88 Mon Sep 17 00:00:00 2001 From: williamlardier Date: Tue, 26 Mar 2024 17:11:32 +0100 Subject: [PATCH] s --- CountItems/utils/utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CountItems/utils/utils.js b/CountItems/utils/utils.js index 993393c3..ab957d9c 100644 --- a/CountItems/utils/utils.js +++ b/CountItems/utils/utils.js @@ -64,9 +64,9 @@ function consolidateDataMetrics(target, source) { resTarget.usedCapacity.nonCurrent += usedCapacity ? usedCapacity._nonCurrentCold + usedCapacity._nonCurrentRestored + usedCapacity._nonCurrentRestoring : 0; resTarget.objectCount.current += objectCount - ? objectCount._currentCold + objectCount._currentRestored + objectCount._currentRestored : 0; + ? objectCount._currentCold + objectCount._currentRestored + objectCount._currentRestoring : 0; resTarget.objectCount.nonCurrent += objectCount - ? objectCount._nonCurrentCold + objectCount._nonCurrentRestored + objectCount._nonCurrentRestored : 0; + ? objectCount._nonCurrentCold + objectCount._nonCurrentRestored + objectCount._nonCurrentRestoring : 0; return resTarget; }