shx-3d-render

main
Jan Umbach 2024-06-21 19:50:40 +02:00
parent 8cb468b352
commit d68138a5c3
1 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@
function SHX_IFC_genColorSelect(inputID, labelText, inputName, inputVal, options, section_id) { function SHX_IFC_genColorSelect(inputID, labelText, inputName, inputVal, options, section_id) {
let html = ` let html = `
<label class="form__label custom shx-ifc-form_label" for="${inputID}-label">${labelText}</label> <label class="form__label custom shx-ifc-form_label" for="${inputID}-label">${labelText}</label>
<div id="${inputID}" class="shx-ifc-colorselect"> <section id="${inputID}" class="shx-ifc-colorselect">
`; `;
for(let i = 0; i < options.length; i++) { for(let i = 0; i < options.length; i++) {
@ -152,7 +152,7 @@
`; `;
} }
html += `</div>`; html += `</section>`;
return html; return html;
} }