diff --git a/devenv/dev-dashboards-without-uid/panel_tests_polystat.json b/devenv/dev-dashboards-without-uid/panel_tests_polystat.json index d4052306f21..d75dad9009b 100644 --- a/devenv/dev-dashboards-without-uid/panel_tests_polystat.json +++ b/devenv/dev-dashboards-without-uid/panel_tests_polystat.json @@ -440,6 +440,10 @@ { "text": "Vietnamese Dong (VND)", "value": "currencyVND" + }, + { + "text": "Turkish Lira (₺)", + "value": "currencyTRY" } ], "text": "currency" diff --git a/devenv/dev-dashboards/panel-polystat/polystat_test.json b/devenv/dev-dashboards/panel-polystat/polystat_test.json index 03569f5e64b..833c710890c 100644 --- a/devenv/dev-dashboards/panel-polystat/polystat_test.json +++ b/devenv/dev-dashboards/panel-polystat/polystat_test.json @@ -440,6 +440,10 @@ { "text": "Vietnamese Dong (VND)", "value": "currencyVND" + }, + { + "text": "Turkish Lira (₺)", + "value": "currencyTRY" } ], "text": "currency" diff --git a/packages/grafana-data/src/valueFormats/categories.ts b/packages/grafana-data/src/valueFormats/categories.ts index 653146f6bd3..f91376e4ccd 100644 --- a/packages/grafana-data/src/valueFormats/categories.ts +++ b/packages/grafana-data/src/valueFormats/categories.ts @@ -138,6 +138,7 @@ export const getCategories = (): ValueFormatCategory[] => [ { name: 'Indonesian Rupiah (Rp)', id: 'currencyIDR', fn: currency('Rp') }, { 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) }, ], }, {