1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-16 12:55:14 +03:00

Fix cli output

Fix rememberLastTab

Fix sonar issues
This commit is contained in:
Mark Haslinghuis 2022-07-26 16:56:56 +02:00
parent 1c775439a1
commit e85b706ad6
13 changed files with 23 additions and 42 deletions

View file

@ -588,7 +588,7 @@ function startProcess() {
$(expertModeCheckbox).trigger("change");
result = ConfigStorage.get('cliAutoComplete');
CliAutoComplete.setEnabled(typeof result.cliAutoComplete === undefined || result.cliAutoComplete); // On by default
CliAutoComplete.setEnabled(typeof result.cliAutoComplete === "undefined" || result.cliAutoComplete); // On by default
result = ConfigStorage.get('darkTheme');
if (result.darkTheme === undefined || typeof result.darkTheme !== "number") {