From 3632b9345f6ed938ce3a526bee9018f4e2cf0b52 Mon Sep 17 00:00:00 2001 From: mgreminger Date: Thu, 21 Dec 2023 16:19:52 -0600 Subject: [PATCH] fix: replace incorrect mb unit with Mb in custom unit options for information category --- src/sheet/Sheet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sheet/Sheet.ts b/src/sheet/Sheet.ts index a504b8bf..b62151f0 100644 --- a/src/sheet/Sheet.ts +++ b/src/sheet/Sheet.ts @@ -175,7 +175,7 @@ export const baseUnitChoices: {name: string, label: string, choices: string[]}[] {name: 'magnetic_flux_density', label: 'Magnetic Flux Density', choices: ['T', 'mT', 'uT', 'nT','pT']}, {name: 'luminous_intensity', label: 'Luminous Intensity', choices: ['cd', 'mcd', 'kcd']}, {name: 'amount_of_substance', label: 'Amount of Substance', choices: ['mol', 'kmol', 'mmol']}, - {name: 'information', label: 'Information', choices: ['b', 'B', 'kB', 'MB', 'GB', 'TB', 'PB', 'kb', 'mb', 'Gb', 'Tb', 'Pb']}, + {name: 'information', label: 'Information', choices: ['b', 'B', 'kB', 'MB', 'GB', 'TB', 'PB', 'kb', 'Mb', 'Gb', 'Tb', 'Pb']}, ]; export type BaseUnitSystemNames = "SI" | "mm-kg-sec" | "inch-lbm-sec";