Merge pull request #11101 from Budibase/fix/hidden-grid-block-columsn

Ensure columns configured in the grid block are always visible
This commit is contained in:
Andrew Kingston 2023-07-03 10:32:11 +01:00 committed by GitHub
commit a143f46412
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@
columns?.forEach(column => {
overrides[column.name] = {
displayName: column.displayName || column.name,
visible: true,
}
})
return overrides