Commit 45e0ebcc by andreaslangnevyjel Committed by Torkel Ödegaard

Units: fixed wrong id for Terabits/sec (#19611)

parent f58ec04c
......@@ -155,7 +155,7 @@ export const getCategories = (): ValueFormatCategory[] => [
{ name: 'gigabytes/sec', id: 'GBs', fn: decimalSIPrefix('Bs', 3) },
{ name: 'gigabits/sec', id: 'Gbits', fn: decimalSIPrefix('bps', 3) },
{ name: 'terabytes/sec', id: 'TBs', fn: decimalSIPrefix('Bs', 4) },
{ name: 'terabits/sec', id: 'Gbits', fn: decimalSIPrefix('bps', 4) },
{ name: 'terabits/sec', id: 'Tbits', fn: decimalSIPrefix('bps', 4) },
{ name: 'petabytes/sec', id: 'PBs', fn: decimalSIPrefix('Bs', 5) },
{ name: 'petabits/sec', id: 'Pbits', fn: decimalSIPrefix('bps', 5) },
],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment