Currency: Add Malaysian Ringgit (RM) (#74073)

* Currency: Add Malaysian Ringgit (RM)

* Removed formatting
This commit is contained in:
skangmy 2023-09-04 18:15:46 +08:00 committed by GitHub
parent e2724f39d9
commit 8877340483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 0 deletions

View File

@ -444,6 +444,10 @@
{
"text": "Turkish Lira (₺)",
"value": "currencyTRY"
},
{
"text": "Malaysian Ringgit (RM)",
"value": "currencyMYR"
}
],
"text": "currency"
@ -1599,6 +1603,10 @@
{
"text": "Vietnamese Dong (VND)",
"value": "currencyVND"
},
{
"text": "Malaysian Ringgit (RM)",
"value": "currencyMYR"
}
],
"text": "currency"
@ -2694,6 +2702,10 @@
{
"text": "Vietnamese Dong (VND)",
"value": "currencyVND"
},
{
"text": "Malaysian Ringgit (RM)",
"value": "currencyMYR"
}
],
"text": "currency"

View File

@ -444,6 +444,10 @@
{
"text": "Turkish Lira (₺)",
"value": "currencyTRY"
},
{
"text": "Malaysian Ringgit (RM)",
"value": "currencyMYR"
}
],
"text": "currency"
@ -1599,6 +1603,10 @@
{
"text": "Vietnamese Dong (VND)",
"value": "currencyVND"
},
{
"text": "Malaysian Ringgit (RM)",
"value": "currencyMYR"
}
],
"text": "currency"
@ -2690,6 +2698,10 @@
{
"text": "Vietnamese Dong (VND)",
"value": "currencyVND"
},
{
"text": "Malaysian Ringgit (RM)",
"value": "currencyMYR"
}
],
"text": "currency"

View File

@ -142,6 +142,7 @@ export const getCategories = (): ValueFormatCategory[] => [
{ name: 'Philippine Peso (PHP)', id: 'currencyPHP', fn: currency('PHP') },
{ 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') },
],
},
{