Dashboard: Field Config - Add CFP franc currency (XPF) (#70036)

This commit is contained in:
Romain Tartière
2023-09-29 01:36:34 -10:00
committed by GitHub
parent dc4091bd34
commit 1c57217f66
3 changed files with 9 additions and 0 deletions

View File

@ -448,6 +448,10 @@
{
"text": "Malaysian Ringgit (RM)",
"value": "currencyMYR"
},
{
"text": "CFP franc (XPF)",
"value": "currencyXPF"
}
],
"text": "currency"

View File

@ -448,6 +448,10 @@
{
"text": "Malaysian Ringgit (RM)",
"value": "currencyMYR"
},
{
"text": "CFP franc (XPF)",
"value": "currencyXPF"
}
],
"text": "currency"

View File

@ -143,6 +143,7 @@ export const getCategories = (): ValueFormatCategory[] => [
{ name: 'Vietnamese Dong (VND)', id: 'currencyVND', fn: currency('đ', true) },
{ name: 'Turkish Lira (₺)', id: 'currencyTRY', fn: currency('₺', true) },
{ name: 'Malaysian Ringgit (RM)', id: 'currencyMYR', fn: currency('RM') },
{ name: 'CFP franc (XPF)', id: 'currencyXPF', fn: currency('XPF') },
],
},
{