settings: fix typo

pull/3221/head
Rob Pilling 2024-02-28 22:52:05 +00:00
parent 1f2179535a
commit 1c28933dfd
3 changed files with 4 additions and 3 deletions

View File

@ -77,4 +77,5 @@ of 'Select Clock'
calibration was done.
0.67: Rename 'Wake on BTN1/Touch' to 'Wake on Button/Tap' on Bangle.js 2
0.68: Fix syntax error
0.69: Add option to wake on double tap
0.69: Add option to wake on double tap
0.70: Fix load() typo

View File

@ -1,7 +1,7 @@
{
"id": "setting",
"name": "Settings",
"version": "0.69",
"version": "0.70",
"description": "A menu for setting up Bangle.js",
"icon": "settings.png",
"tags": "tool,system",

View File

@ -641,7 +641,7 @@ function showUtilMenu() {
storage.writeJSON("setting.json",s);
E.showAlert(/*LANG*/"Calibrated!").then(() => load("setting.app.js"));
} else {
E.showAlert(/*LANG*/"Please charge Bangle.js for 3 hours and try again").then(() => load("settings.app.js"));
E.showAlert(/*LANG*/"Please charge Bangle.js for 3 hours and try again").then(() => load("setting.app.js"));
}
});
};