Skip to content

Commit

Permalink
HPCC-30394 ECL Watch increase decimal precision of any Cost fields
Browse files Browse the repository at this point in the history
Signed-off-by: Jeremy Clements <[email protected]>
  • Loading branch information
jeclrsg committed Oct 2, 2023
1 parent 8b3ec0a commit 1a5522a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp/src/src/Session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ getBuildInfo().then(info => {
dojoConfig.currencyCode = info["currencyCode"] ?? "";
});

const format = d3Format(",.2f");
const format = d3Format(",.6f");
export function formatCost(value): string {
if (isNaN(value)) {
logger.debug(`formatCost called for a nullish value: ${value}`);
Expand Down

0 comments on commit 1a5522a

Please sign in to comment.