mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-07-02 03:02:19 +08:00
fix: third party data source should support sortable in table column (#5293)
This commit is contained in:
parent
ed2d80dd26
commit
45b814862a
@ -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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user