diff --git a/packages/core/client/src/modules/blocks/data-blocks/table/tableColumnSettings.tsx b/packages/core/client/src/modules/blocks/data-blocks/table/tableColumnSettings.tsx index 6c6cf6cfc8..2aebed608f 100644 --- a/packages/core/client/src/modules/blocks/data-blocks/table/tableColumnSettings.tsx +++ b/packages/core/client/src/modules/blocks/data-blocks/table/tableColumnSettings.tsx @@ -156,7 +156,9 @@ export const tableColumnSettings = new SchemaSettings({ const { currentMode } = useAssociationFieldContext(); return ( - interfaceCfg?.sortable === true && !currentMode && collection?.name === collectionField?.collectionName + interfaceCfg?.sortable === true && + !currentMode && + (collection?.name === collectionField?.collectionName || !collectionField?.collectionName) ); }, useComponentProps() {