fixed typo in settings.js for DRAGDOWN that did cause the setting to not be saved correctly and hence wasn't settable

pull/2633/head
Christian Meichle 2023-03-06 15:40:11 +01:00
parent 9625bc8214
commit b1726ea33c
3 changed files with 3 additions and 2 deletions

View File

@ -5,3 +5,4 @@
0.05: Improved colors (connected vs disconnected)
0.06: Tell clock widgets to hide.
0.07: Convert Yes/No On/Off in settings to checkboxes
0.08: Fixed typo in settings.js for DRAGDOWN to make option work

View File

@ -1,7 +1,7 @@
{
"id": "clockcal",
"name": "Clock & Calendar",
"version": "0.07",
"version": "0.08",
"description": "Clock with Calendar",
"readme":"README.md",
"icon": "app.png",

View File

@ -93,7 +93,7 @@
value: actions.indexOf(settings.DRAGDOWN),
format: v => actions[v],
onchange: v => {
settings.DRGDOWN = actions[v];
settings.DRAGDOWN = actions[v];
writeSettings();
}
},