From 235a69527e5973c6aeb910da4be0be675811c97d Mon Sep 17 00:00:00 2001 From: Badri Date: Tue, 24 Sep 2019 15:16:15 +0530 Subject: [PATCH] grafana/ui: Add Indian Rupee (INR) to currencies (#19201) * Adding Indian Rupee (INR) to currencies This change adds formal support for the Indian Rupee in the list of currencies. * fix comma --- packages/grafana-ui/src/utils/valueFormats/categories.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/grafana-ui/src/utils/valueFormats/categories.ts b/packages/grafana-ui/src/utils/valueFormats/categories.ts index 8f314cef65b..4042b26590f 100644 --- a/packages/grafana-ui/src/utils/valueFormats/categories.ts +++ b/packages/grafana-ui/src/utils/valueFormats/categories.ts @@ -115,6 +115,7 @@ export const getCategories = (): ValueFormatCategory[] => [ { name: 'Polish Złoty (PLN)', id: 'currencyPLN', fn: currency('PLN') }, { name: 'Bitcoin (฿)', id: 'currencyBTC', fn: currency('฿') }, { name: 'South African Rand (R)', id: 'currencyZAR', fn: currency('R') }, + { name: 'Indian Rupee (₹)', id: 'currencyINR', fn: currency('₹') }, ], }, {