Update default column visibility check

This commit is contained in:
Andrew Kingston 2023-10-23 12:40:29 +01:00
parent 8d2530d4c8
commit 73f3b76c01
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@
let columns = []
let autoColumns = []
Object.entries(schema).forEach(([field, fieldSchema]) => {
if (!fieldSchema.visible) {
if (fieldSchema.visible === false) {
return
}
if (!fieldSchema?.autocolumn) {