We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 452b3d4 commit e691282Copy full SHA for e691282
webroot/js/tables.js
@@ -70,7 +70,7 @@ $("table.column-toggle").each(function () {
70
table.find('th').each((index, th) => {
71
const checkboxTableCell = $("<td></td>");
72
const checkboxLabel = $(`<label>${th.textContent.replace('⫧', '').trim()}</label>`);
73
- const checkbox = $('<input type="checkbox" class="col-toggle">');
+ const checkbox = $('<input type="checkbox">');
74
if (th.classList.contains("hidden-by-default")) {
75
setColumnVisibility(id, index + 1, false);
76
checkbox.prop("checked", false);
0 commit comments