diff --git a/packages/client/src/components/app/table/Table.svelte b/packages/client/src/components/app/table/Table.svelte index 0a599424ff..0fc17abe6d 100644 --- a/packages/client/src/components/app/table/Table.svelte +++ b/packages/client/src/components/app/table/Table.svelte @@ -86,11 +86,13 @@ if (UnsortableTypes.includes(schema[columnName].type)) { newSchema[columnName].sortable = false } - if (field?.displayName) { - newSchema[columnName].displayName = field?.displayName - } - if (field?.width) { - newSchema[columnName].width = field?.width + + // Add additional settings like width etc + if (typeof field === "object") { + newSchema[columnName] = { + ...newSchema[columnName], + ...field, + } } }) return newSchema