Skip to content

Commit 9408b44

Browse files
committed
ACI0105499 fix format of number if localized and has floating point error and format
1 parent 871c347 commit 9408b44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Resources/scripts/commands/file.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ Utils.addFormatedText = function (json) {
628628
formatter = generalDateFormatter;
629629
}
630630
} else if (typeof (cell.value) === 'number') {
631-
val = Number(cell.value).toFixed(13);
631+
val = Number(cell.value.toFixed(13));
632632
} else {
633633
val = cell.value;
634634
}

0 commit comments

Comments
 (0)