Skip to content

Commit 2a1372b

Browse files
DOC-5922 fixed another instance of
1 parent b400610 commit 2a1372b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

static/js/checklist.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@ function createChecklistFromMarkdown(markdown, formId, preElement) {
4444
select.onchange = () => clChange(formId);
4545

4646
const options = [
47-
{ value: 'R', label: '❌' },
48-
{ value: 'G', label: '✅' },
49-
{ value: 'A', label: '🔍' },
50-
{ value: 'X', label: '∅' }
47+
{ value: 'R', label: '' },
48+
{ value: 'G', label: '' },
49+
{ value: 'A', label: '🔍' },
50+
{ value: 'X', label: '' }
5151
];
52-
52+
5353
options.forEach(opt => {
5454
const option = document.createElement('option');
5555
option.value = opt.value;
56-
option.innerHTML = opt.label;
56+
option.textContent = opt.label;
5757
select.appendChild(option);
5858
});
5959

0 commit comments

Comments
 (0)