From 97e5a2e2da6ee30efc28642fad313323495266d9 Mon Sep 17 00:00:00 2001 From: Lars Gebhardt-Kusche Date: Fri, 14 Aug 2026 01:14:40 +0200 Subject: [PATCH] adads --- custom/apps/mining-checker/assets/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/apps/mining-checker/assets/js/app.js b/custom/apps/mining-checker/assets/js/app.js index 161e0ad5..2b00af57 100644 --- a/custom/apps/mining-checker/assets/js/app.js +++ b/custom/apps/mining-checker/assets/js/app.js @@ -2805,7 +2805,7 @@ const totalSpentOverallFiat = totalSpentOverallCurrentAsset !== null ? convertCurrencyValue(totalSpentOverallCurrentAsset, currentCoinCurrency, reportCurrency) : null; - const spentByType = activeMinerRows.reduce((summary, row) => { + const spentByType = allMinerRows.reduce((summary, row) => { const amount = Number(row?.effective_amount); const currency = String(row?.effective_currency || '').toUpperCase(); if (!Number.isFinite(amount) || amount <= 0 || !currency) {