Merge pull request #4145 from Simpler1/patch-2

fix(events): Initial hidden columns when cookie doesn't exist
This commit is contained in:
Isaac Connor
2024-09-20 16:59:05 -04:00
committed by GitHub

View File

@@ -311,7 +311,7 @@ function initPage() {
table.bootstrapTable({icons: icons});
// Hide these columns on first run when no cookie is saved
if (!getCookie('zmEventsTable.bs.table.columns')) {
if (!getCookie('zmEventsTable.bs.table.hiddenColumns')) {
// table.bootstrapTable('hideColumn', 'Archived');
table.bootstrapTable('hideColumn', 'Emailed');
}