mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-27 10:26:09 +00:00
UI: Fixed Data is getting round off at the time of formatting in en-US (#8576)
This commit is contained in:
parent
00bac5c929
commit
1538972341
@ -786,9 +786,7 @@ export const showPagination = (paging: Paging) => {
|
||||
};
|
||||
|
||||
export const formatNumberWithComma = (number: number) => {
|
||||
return new Intl.NumberFormat('en-US', { maximumSignificantDigits: 3 }).format(
|
||||
number
|
||||
);
|
||||
return new Intl.NumberFormat('en-US').format(number);
|
||||
};
|
||||
|
||||
export const formTwoDigitNmber = (number: number) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user