Update app.js for idiomatic group ||

pull/3113/head
lauzonhomeschool 2023-11-24 14:54:45 -05:00 committed by GitHub
parent d4f5c37f67
commit 85ce98a126
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ function formatAlarmProperty(msg) {
function showMainMenu(scroll, group) {
const menu = {
"": { "title": group ? group : /*LANG*/"Alarms & Timers", scroll: scroll },
"": { "title": group || /*LANG*/"Alarms & Timers", scroll: scroll },
"< Back": () => group ? showMainMenu() : load(),
/*LANG*/"New...": () => showNewMenu(group)
};