diff --git a/libs/common/src/lib/helper.ts b/libs/common/src/lib/helper.ts index dd07c23fa..f929d70ad 100644 --- a/libs/common/src/lib/helper.ts +++ b/libs/common/src/lib/helper.ts @@ -251,7 +251,8 @@ export function getNumberFormatDecimal(aLocale?: string) { } export function getNumberFormatGroup(aLocale = getLocale()) { - const formatObject = new Intl.NumberFormat(aLocale).formatToParts(9999.99); + const formatOptions = {'useGrouping': true} + const formatObject = new Intl.NumberFormat(aLocale, formatOptions).formatToParts(9999.99); return formatObject.find((object) => { return object.type === 'group';