mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
ValueFormats: Add support for Turkish Lira (₺) (#70662)
chore(valueFormats): Turkish Lira (₺) Support add #70660
This commit is contained in:
parent
135ef088ed
commit
526160b769
@ -440,6 +440,10 @@
|
|||||||
{
|
{
|
||||||
"text": "Vietnamese Dong (VND)",
|
"text": "Vietnamese Dong (VND)",
|
||||||
"value": "currencyVND"
|
"value": "currencyVND"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Turkish Lira (₺)",
|
||||||
|
"value": "currencyTRY"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"text": "currency"
|
"text": "currency"
|
||||||
|
@ -440,6 +440,10 @@
|
|||||||
{
|
{
|
||||||
"text": "Vietnamese Dong (VND)",
|
"text": "Vietnamese Dong (VND)",
|
||||||
"value": "currencyVND"
|
"value": "currencyVND"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "Turkish Lira (₺)",
|
||||||
|
"value": "currencyTRY"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"text": "currency"
|
"text": "currency"
|
||||||
|
@ -138,6 +138,7 @@ export const getCategories = (): ValueFormatCategory[] => [
|
|||||||
{ name: 'Indonesian Rupiah (Rp)', id: 'currencyIDR', fn: currency('Rp') },
|
{ name: 'Indonesian Rupiah (Rp)', id: 'currencyIDR', fn: currency('Rp') },
|
||||||
{ name: 'Philippine Peso (PHP)', id: 'currencyPHP', fn: currency('PHP') },
|
{ name: 'Philippine Peso (PHP)', id: 'currencyPHP', fn: currency('PHP') },
|
||||||
{ name: 'Vietnamese Dong (VND)', id: 'currencyVND', fn: currency('đ', true) },
|
{ name: 'Vietnamese Dong (VND)', id: 'currencyVND', fn: currency('đ', true) },
|
||||||
|
{ name: 'Turkish Lira (₺)', id: 'currencyTRY', fn: currency('₺', true) },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user