Skip to content

Commit

Permalink
fix format select links
Browse files Browse the repository at this point in the history
  • Loading branch information
coret committed Dec 23, 2023
1 parent 402abbd commit 97c16ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/search.php
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ function fromHash() {
const newFormat = document.createElement('label');
const inputElement = document.createElement('input');
inputElement.type = 'checkbox';
inputElement.class = 'choice';
inputElement.className = 'choice';
inputElement.value = item;
inputElement.name = 'format[]';
inputElement.checked = formats.has(item);
Expand Down

0 comments on commit 97c16ff

Please sign in to comment.