1 parent 2ff36ff commit c2c8f4bCopy full SHA for c2c8f4b
1 file changed
scripts/form.js
@@ -304,9 +304,9 @@ fetch('config.json')
304
const label = document.createElement('label');
305
if (Array.isArray(question.label)) {
306
// Concatenate the label array with " " as separator
307
- label.innerHTML = question.label.join(' ') + ':';
+ label.innerHTML = question.label.join(' ');
308
} else {
309
- label.innerHTML = question.label + ':';
+ label.innerHTML = question.label;
310
}
311
label.style.color = '#ddd'; // Light text color
312
form.appendChild(label);
0 commit comments