re-add missing dropdownbox filling for Postprocessing Individual Parameters

This commit is contained in:
CaCO3
2023-02-28 21:35:54 +01:00
parent 4c407499d2
commit c694d9f363

View File

@@ -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;