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

Commit 198437e

Browse files
committed
Linting fix
1 parent 70bc2a8 commit 198437e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gui/js/comp/ConfigPage.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ export function ConfigPage(props) {
5858
break;
5959

6060
default:
61-
if (Config[i].type != "separator" && Config[i].type != "label" && Config[i].type != "header")
61+
if (Config[i].type != "separator" && Config[i].type != "label" && Config[i].type != "header") {
6262
newData[Config[i].name] = document.getElementById(Config[i].name).value;
63+
}
6364
}
6465
}
6566

0 commit comments

Comments
 (0)