Fix one more typo in data rate unit names (#44675)

This commit is contained in:
Sergej Zagursky 2022-02-01 21:49:21 +03:00 committed by GitHub
parent 7ee38af95a
commit 1f4fdf31df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) },
],