diff --git a/devenv/dev-dashboards-without-uid/panel_tests_polystat.json b/devenv/dev-dashboards-without-uid/panel_tests_polystat.json index 8b89c5bce35..71cbfb27f99 100644 --- a/devenv/dev-dashboards-without-uid/panel_tests_polystat.json +++ b/devenv/dev-dashboards-without-uid/panel_tests_polystat.json @@ -453,6 +453,10 @@ "text": "CFP franc (XPF)", "value": "currencyXPF" } + { + "text": "Bulgarian Lev (BGN)", + "value": "currencyBGN" + } ], "text": "currency" }, @@ -1612,6 +1616,10 @@ "text": "Malaysian Ringgit (RM)", "value": "currencyMYR" } + { + "text": "Bulgarian Lev (BGN)", + "value": "currencyBGN" + } ], "text": "currency" }, @@ -2711,6 +2719,10 @@ "text": "Malaysian Ringgit (RM)", "value": "currencyMYR" } + { + "text": "Bulgarian Lev (BGN)", + "value": "currencyBGN" + } ], "text": "currency" }, diff --git a/devenv/dev-dashboards/panel-polystat/polystat_test.json b/devenv/dev-dashboards/panel-polystat/polystat_test.json index 61be0f023b4..8d9bd53b78f 100644 --- a/devenv/dev-dashboards/panel-polystat/polystat_test.json +++ b/devenv/dev-dashboards/panel-polystat/polystat_test.json @@ -449,10 +449,14 @@ "text": "Malaysian Ringgit (RM)", "value": "currencyMYR" }, - { + { "text": "CFP franc (XPF)", "value": "currencyXPF" } + { + "text": "Bulgarian Lev (BGN)", + "value": "currencyBGN" + } ], "text": "currency" }, @@ -1612,6 +1616,10 @@ "text": "Malaysian Ringgit (RM)", "value": "currencyMYR" } + { + "text": "Bulgarian Lev (BGN)", + "value": "currencyBGN" + } ], "text": "currency" }, @@ -2707,6 +2715,10 @@ "text": "Malaysian Ringgit (RM)", "value": "currencyMYR" } + { + "text": "Bulgarian Lev (BGN)", + "value": "currencyBGN" + } ], "text": "currency" }, diff --git a/packages/grafana-data/src/valueFormats/categories.ts b/packages/grafana-data/src/valueFormats/categories.ts index e21e60fbf51..800dec30e07 100644 --- a/packages/grafana-data/src/valueFormats/categories.ts +++ b/packages/grafana-data/src/valueFormats/categories.ts @@ -144,6 +144,7 @@ export const getCategories = (): ValueFormatCategory[] => [ { 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') }, + { name: 'Bulgarian Lev (BGN)', id: 'currencyBGN', fn: currency('BGN') }, ], }, {