Skip to content

Commit e691282

Browse files
committed
remove unused class
1 parent 452b3d4 commit e691282

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webroot/js/tables.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ $("table.column-toggle").each(function () {
7070
table.find('th').each((index, th) => {
7171
const checkboxTableCell = $("<td></td>");
7272
const checkboxLabel = $(`<label>${th.textContent.replace('⫧', '').trim()}</label>`);
73-
const checkbox = $('<input type="checkbox" class="col-toggle">');
73+
const checkbox = $('<input type="checkbox">');
7474
if (th.classList.contains("hidden-by-default")) {
7575
setColumnVisibility(id, index + 1, false);
7676
checkbox.prop("checked", false);

0 commit comments

Comments
 (0)