summaryrefslogtreecommitdiffstats
path: root/client/components/cards/cardCustomFields.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/cards/cardCustomFields.js')
-rw-r--r--client/components/cards/cardCustomFields.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/client/components/cards/cardCustomFields.js b/client/components/cards/cardCustomFields.js
index 737c5454..45f20762 100644
--- a/client/components/cards/cardCustomFields.js
+++ b/client/components/cards/cardCustomFields.js
@@ -85,11 +85,16 @@ CardCustomField.register('cardCustomField');
onCreated() {
super.onCreated();
- this.currencySymbol = this.data().definition.settings.currencySymbol;
+ this.currencyCode = this.data().definition.settings.currencyCode;
}
formattedValue() {
- return `${this.currencySymbol}${this.data().value}`;
+ const locale = TAPi18n.getLanguage();
+
+ return new Intl.NumberFormat(locale, {
+ style: 'currency',
+ currency: this.currencyCode,
+ }).format(this.data().value);
}
events() {