Multiple minor fixes

This commit is contained in:
Pax1601
2023-03-14 22:25:00 +01:00
parent 16b5e89a3e
commit 9ed4189c28
20 changed files with 91 additions and 75 deletions

View File

@@ -101,6 +101,6 @@ export class UnitDatabase {
getShortLabelByName(name: string)
{
return this.units[name] === undefined? name: this.units[name].shortLabel;
return this.units[name] === undefined? "U": this.units[name].shortLabel;
}
}