Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Commit

Permalink
Linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maakbaas committed Sep 4, 2022
1 parent 70bc2a8 commit 198437e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gui/js/comp/ConfigPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@ export function ConfigPage(props) {
break;

default:
if (Config[i].type != "separator" && Config[i].type != "label" && Config[i].type != "header")
if (Config[i].type != "separator" && Config[i].type != "label" && Config[i].type != "header") {
newData[Config[i].name] = document.getElementById(Config[i].name).value;
}
}
}

Expand Down

0 comments on commit 198437e

Please sign in to comment.