You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Three mismatches between the Overview docs and what components.mjs actually renders. Source of truth is the code, so these are doc fixes (plus one code-label decision):
"Share in Window" is spelled three ways. The doc's Overview table says Share in Window (docs/dashboard.md:204), the rendered stat card says Share In Window (components.mjs:45, capital "In"), and the hero KPI band says Shares in Window (plural — logic.mjs:57, doc line ~125). Pick one casing for the stat card and make the doc match; singular vs plural between card and hero may be deliberate (one metric, one count) but deserves a look.
The doc lists a single "Wallets" row; the UI renders two cards.docs/dashboard.md:212 describes one Wallets field; the code renders separate Wallet XMR and Wallet TARI stat cards (components.mjs:263-264).
The doc's Overview field order is stale. The doc lists Mining Mode → Total Hashrate → Workers Alive → Share in Window → …; the code renders Total Hashrate → Mining Mode → Workers Alive → Current Tier → … (the Dashboard: redesign card layout to prioritize stack-relevant data on top (Simple + Advanced) #159 reorder, marked intentional in the code comment at components.mjs:245). The doc table should follow the rendered order.
Three mismatches between the Overview docs and what
components.mjsactually renders. Source of truth is the code, so these are doc fixes (plus one code-label decision):"Share in Window" is spelled three ways. The doc's Overview table says Share in Window (
docs/dashboard.md:204), the rendered stat card says Share In Window (components.mjs:45, capital "In"), and the hero KPI band says Shares in Window (plural —logic.mjs:57, doc line ~125). Pick one casing for the stat card and make the doc match; singular vs plural between card and hero may be deliberate (one metric, one count) but deserves a look.The doc lists a single "Wallets" row; the UI renders two cards.
docs/dashboard.md:212describes one Wallets field; the code renders separate Wallet XMR and Wallet TARI stat cards (components.mjs:263-264).The doc's Overview field order is stale. The doc lists Mining Mode → Total Hashrate → Workers Alive → Share in Window → …; the code renders Total Hashrate → Mining Mode → Workers Alive → Current Tier → … (the Dashboard: redesign card layout to prioritize stack-relevant data on top (Simple + Advanced) #159 reorder, marked intentional in the code comment at
components.mjs:245). The doc table should follow the rendered order.