From 8a3cb4480d51b90d22d0e39036833af435ef86a4 Mon Sep 17 00:00:00 2001 From: Christian Meichle Date: Mon, 6 Mar 2023 15:40:11 +0100 Subject: [PATCH] fixed typo in settings.js for DRAGDOWN that did cause the setting to not be saved correctly and hence wasn't settable --- apps/clockcal/settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/clockcal/settings.js b/apps/clockcal/settings.js index 4d8be6fbd..a406f3cf7 100644 --- a/apps/clockcal/settings.js +++ b/apps/clockcal/settings.js @@ -93,7 +93,7 @@ value: actions.indexOf(settings.DRAGDOWN), format: v => actions[v], onchange: v => { - settings.DRGDOWN = actions[v]; + settings.DRAGDOWN = actions[v]; writeSettings(); } },