fix(Temperature Converter): don't round to 2 digits

Fix #1486
This commit is contained in:
ShareVB 2025-02-05 22:27:07 +01:00
parent 08d977b8cd
commit e2fcb40753
2 changed files with 4 additions and 1 deletions

3
components.d.ts vendored
View file

@ -138,6 +138,9 @@ declare module '@vue/runtime-core' {
NH1: typeof import('naive-ui')['NH1']
NH3: typeof import('naive-ui')['NH3']
NIcon: typeof import('naive-ui')['NIcon']
NInputGroup: typeof import('naive-ui')['NInputGroup']
NInputGroupLabel: typeof import('naive-ui')['NInputGroupLabel']
NInputNumber: typeof import('naive-ui')['NInputNumber']
NLayout: typeof import('naive-ui')['NLayout']
NLayoutSider: typeof import('naive-ui')['NLayoutSider']
NMenu: typeof import('naive-ui')['NMenu']

View file

@ -91,7 +91,7 @@ function update(key: TemperatureScale) {
_.chain(units)
.omit(key)
.forEach(({ fromKelvin }, index) => {
units[index].ref = Math.floor((fromKelvin(kelvins) ?? 0) * 100) / 100;
units[index].ref = fromKelvin(kelvins) ?? 0;
})
.value();
}