Don't replace 19.5 with null

master
Ishidres 2024-03-22 18:05:42 +01:00
parent cc259783cd
commit b2a84970f5
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@
noList: true,
format: v => v === 19.5 ? "Disabled" : v + "°C",
onchange: v => {
settings.wearTemp = v === 19.5 ? null : v;
settings.wearTemp = v;
writeSetting();
}
},