From 1f4fdf31dfc0eb2abfecc1e3817f372c2e08134e Mon Sep 17 00:00:00 2001 From: Sergej Zagursky Date: Tue, 1 Feb 2022 21:49:21 +0300 Subject: [PATCH] Fix one more typo in data rate unit names (#44675) --- 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 e7c2aa8aef9..2b3340f9e97 100644 --- a/packages/grafana-data/src/valueFormats/categories.ts +++ b/packages/grafana-data/src/valueFormats/categories.ts @@ -183,8 +183,8 @@ export const getCategories = (): ValueFormatCategory[] => [ { name: 'tebibits/sec', id: 'Tibits', fn: binaryPrefix('b/s', 4) }, { name: 'terabytes/sec', id: 'TBs', fn: SIPrefix('B/s', 4) }, { name: 'terabits/sec', id: 'Tbits', fn: SIPrefix('b/s', 4) }, - { name: 'petibytes/sec', id: 'PiBs', fn: binaryPrefix('B/s', 5) }, - { name: 'petibits/sec', id: 'Pibits', fn: binaryPrefix('b/s', 5) }, + { name: 'pebibytes/sec', id: 'PiBs', fn: binaryPrefix('B/s', 5) }, + { name: 'pebibits/sec', id: 'Pibits', fn: binaryPrefix('b/s', 5) }, { name: 'petabytes/sec', id: 'PBs', fn: SIPrefix('B/s', 5) }, { name: 'petabits/sec', id: 'Pbits', fn: SIPrefix('b/s', 5) }, ],