shx-3d-render

main
Jan Umbach 2024-06-15 01:22:12 +02:00
parent 84990999d4
commit 261224ea62
1 changed files with 2 additions and 1 deletions

View File

@ -158,7 +158,8 @@
if(key === this.currentVariant) {
let inputs = this.content.querySelectorAll('input');
for(let i = 0; i < inputs.length; i++) {
globalInputFormsObjValues[key][inputs[i].name] = inputs[i].value;
let name = inputs[i].name.replace('properties[', '').replace(']', '');
globalInputFormsObjValues[key][name] = inputs[i].value;
}
}
}