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:
parent
1c775439a1
commit
e85b706ad6
13 changed files with 23 additions and 42 deletions
|
@ -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") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue