From 99ee72688c7bc32022ace74b63ffa790e2d3761d Mon Sep 17 00:00:00 2001 From: Sergej Zagursky Date: Mon, 31 Jan 2022 12:31:27 +0300 Subject: [PATCH] Fix typos in data rate unit names (#44632) --- packages/grafana-data/src/valueFormats/categories.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/grafana-data/src/valueFormats/categories.ts b/packages/grafana-data/src/valueFormats/categories.ts index 1bc51510107..e7c2aa8aef9 100644 --- a/packages/grafana-data/src/valueFormats/categories.ts +++ b/packages/grafana-data/src/valueFormats/categories.ts @@ -171,8 +171,8 @@ export const getCategories = (): ValueFormatCategory[] => [ { name: 'kibibits/sec', id: 'Kibits', fn: binaryPrefix('b/s', 1) }, { name: 'kilobytes/sec', id: 'KBs', fn: SIPrefix('B/s', 1) }, { name: 'kilobits/sec', id: 'Kbits', fn: SIPrefix('b/s', 1) }, - { name: 'mibibytes/sec', id: 'MiBs', fn: binaryPrefix('B/s', 2) }, - { name: 'mibibits/sec', id: 'Mibits', fn: binaryPrefix('b/s', 2) }, + { name: 'mebibytes/sec', id: 'MiBs', fn: binaryPrefix('B/s', 2) }, + { name: 'mebibits/sec', id: 'Mibits', fn: binaryPrefix('b/s', 2) }, { name: 'megabytes/sec', id: 'MBs', fn: SIPrefix('B/s', 2) }, { name: 'megabits/sec', id: 'Mbits', fn: SIPrefix('b/s', 2) }, { name: 'gibibytes/sec', id: 'GiBs', fn: binaryPrefix('B/s', 3) },