From 198437e124dfba2d4ebaaf63305088a9e6c3d84f Mon Sep 17 00:00:00 2001 From: Maakbaas Date: Sun, 4 Sep 2022 21:20:24 +0200 Subject: [PATCH] Linting fix --- gui/js/comp/ConfigPage.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui/js/comp/ConfigPage.js b/gui/js/comp/ConfigPage.js index b9a2b2d..99062c0 100644 --- a/gui/js/comp/ConfigPage.js +++ b/gui/js/comp/ConfigPage.js @@ -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; + } } }