fix: process list patch values in http requests

This commit parses values from post request as well as always serializes
values for the web interface
This commit is contained in:
2024-11-22 17:22:37 +02:00
parent 3c1fdec0e9
commit 45a620c40b
7 changed files with 29 additions and 6 deletions

View File

@ -163,7 +163,7 @@
const variableValueInput = document.createElement("input");
variableValueInput.classList.add("form-control");
variableValueInput.readOnly = true;
variableValueInput.value = variable.value;
variableValueInput.value = JSON.stringify(variable.value);
const variableButtonRemove = document.createElement("button");
variableButtonRemove.type = "button";