From c694d9f36310890bbf078b7421d04ba851c1518e Mon Sep 17 00:00:00 2001 From: CaCO3 Date: Tue, 28 Feb 2023 21:35:54 +0100 Subject: [PATCH] re-add missing dropdownbox filling for Postprocessing Individual Parameters --- sd-card/html/edit_config_param.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sd-card/html/edit_config_param.html b/sd-card/html/edit_config_param.html index 0e8dd1f8..f579bc38 100644 --- a/sd-card/html/edit_config_param.html +++ b/sd-card/html/edit_config_param.html @@ -1599,6 +1599,11 @@ function InitIndivParameter() _indexInflux.remove(0); for (var i = 0; i < NUMBERS.length; ++i){ + var option = document.createElement("option"); + option.text = NUMBERS[i]["name"]; + option.value = i; + _index.add(option); + var optionInflux = document.createElement("option"); optionInflux.text = NUMBERS[i]["name"]; optionInflux.value = i;