Skip to content

Commit

Permalink
fix: replace incorrect mb unit with Mb in custom unit options for inf…
Browse files Browse the repository at this point in the history
…ormation category
  • Loading branch information
mgreminger committed Dec 21, 2023
1 parent e3784aa commit 3632b93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sheet/Sheet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 3632b93

Please sign in to comment.