Ver Fonte

re-add missing dropdownbox filling for Postprocessing Individual Parameters

CaCO3 há 2 anos atrás
pai
commit
c694d9f363
1 ficheiros alterados com 5 adições e 0 exclusões
  1. 5 0
      sd-card/html/edit_config_param.html

+ 5 - 0
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;