We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 317f29d commit 6151fafCopy full SHA for 6151faf
src/App/assets/js/components/_table_settings.js
@@ -133,7 +133,9 @@ $(function() {
133
.then((response) => response.json())
134
.then(settings => {
135
populateColumnSelector('#column-selector', settings.data.value);
136
- hideColumns(tableId, settings.data.value);
+ if (settings.data.value.length > 0) {
137
+ hideColumns(tableId, settings.data.value);
138
+ }
139
})
140
.catch(error => console.error('Error: ', error));
141
});
0 commit comments