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
fix(metadata): drop hard-coded "$" from money formats so amounts don't force USD (#437)
Switch all money display formats from '$0,0' to plain '0,0' across the opportunity/account/product datasets and the executive/sales/crm dashboards, so amounts render as plain grouped numbers unless a currency is actually configured (field code or workspace default) rather than a hard-coded "$". Companion to framework#2672. typecheck + validate pass.
Drop the hard-coded `$` from money display formats so amounts don't force a USD symbol.
6
+
7
+
Currency measures and table/axis columns used the numeral format `'$0,0'`, which bakes a literal `$` into every rendered amount regardless of the actual currency. Combined with the platform's (now removed) default currency, the Executive Overview KPI showed `US$2,528,600` even though the `amount` field declares no currency of its own. All money formats are now plain `'0,0'` (grouped number, no symbol) across the opportunity/account/product datasets and the executive/sales/crm dashboards, so amounts render as plain numbers unless a currency is actually configured (a field code or a workspace default).
0 commit comments