try to fix missing minutes

pull/2432/head
Giles Booth 2022-08-19 17:15:28 +01:00 committed by GitHub
parent 1e809fc42c
commit d28a2acbbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -29,6 +29,7 @@
onchange: v => { onchange: v => {
settings.nextTideHour = v; settings.nextTideHour = v;
writeSettings(); writeSettings();
}
}, },
'Minutes?': { 'Minutes?': {
value: 0|settings.nextTideMin, // 0| converts undefined to 0 value: 0|settings.nextTideMin, // 0| converts undefined to 0
@ -38,5 +39,5 @@
writeSettings(); writeSettings();
} }
}, },
}}); });
}); });