Skip to content

Commit 10d9ad7

Browse files
Update src/js/components/filters.js
Co-authored-by: Barry Pollard <barry_pollard@hotmail.com>
1 parent 77a7652 commit 10d9ad7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/js/components/filters.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ class Filters {
156156

157157
const all = document.createElement('option');
158158
all.value = 'ALL';
159-
all.innerHTML = 'ALL';
159+
all.textContent = 'ALL';
160160
select.append(all);
161161

162162
const sortedCategories = this.categories.sort((a, b) => a !== b ? a < b ? -1 : 1 : 0);

0 commit comments

Comments
 (0)