diff --git a/packages/frontend-core/src/components/grid/stores/columns.ts b/packages/frontend-core/src/components/grid/stores/columns.ts index 70b93d93e6..f54e8067b2 100644 --- a/packages/frontend-core/src/components/grid/stores/columns.ts +++ b/packages/frontend-core/src/components/grid/stores/columns.ts @@ -182,7 +182,7 @@ export const initialise = (context: StoreContext) => { name: field, label: fieldSchema.displayName || field, schema: fieldSchema, - width: fieldSchema.width || oldColumn?.width || DefaultColumnWidth, + width: fieldSchema.width || DefaultColumnWidth, visible: fieldSchema.visible ?? true, readonly: fieldSchema.readonly, order: fieldSchema.order ?? oldColumn?.order,