Ensure columns configured in the grid block are always visible, even if hidden in the parent table

This commit is contained in:
Andrew Kingston 2023-07-03 10:31:07 +01:00
parent 036af2d32f
commit bac1a411e8
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