dsfsdf
This commit is contained in:
@@ -2573,7 +2573,7 @@
|
||||
h(StatCard, {
|
||||
key: 'coins',
|
||||
label: `${currentCoinCurrency} im Miner`,
|
||||
value: latest ? fmtNumber(latest.coins_total_visible || latest.coins_total, 6) : 'n/a',
|
||||
value: latest ? fmtNumber(latest.coins_total_visible ?? latest.coins_total, 6) : 'n/a',
|
||||
sub: latest ? `Stand ${fmtDate(latest.measured_at)}` : '',
|
||||
}),
|
||||
h(StatCard, {
|
||||
@@ -2581,7 +2581,7 @@
|
||||
label: `Theoretischer Bestand ${currentCoinCurrency}`,
|
||||
value: payload?.summary?.payouts ? fmtNumber(holdingsCurrentAsset, 6) : 'n/a',
|
||||
sub: payload?.summary?.payouts
|
||||
? `Wallet ${fmtNumber(walletBalanceCurrentAsset, 6)} ${currentCoinCurrency} · Miner ${fmtNumber(latest?.coins_total_visible || latest?.coins_total, 6)} ${currentCoinCurrency}`
|
||||
? `Wallet ${fmtNumber(walletBalanceCurrentAsset, 6)} ${currentCoinCurrency} · Miner ${fmtNumber(latest?.coins_total_visible ?? latest?.coins_total, 6)} ${currentCoinCurrency}`
|
||||
: '',
|
||||
}),
|
||||
h(StatCard, {
|
||||
|
||||
Reference in New Issue
Block a user