From ac8828196a69b6e3e6f4d31a3970423f195608b8 Mon Sep 17 00:00:00 2001 From: katherinehhh Date: Fri, 3 Nov 2023 10:55:40 +0800 Subject: [PATCH] fix: target collection pointed to by tableoid is incorrect (#2952) --- .../antd/collection-select/CollectionSelect.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/client/src/schema-component/antd/collection-select/CollectionSelect.tsx b/packages/core/client/src/schema-component/antd/collection-select/CollectionSelect.tsx index 13ec4ebd2..5e2384846 100644 --- a/packages/core/client/src/schema-component/antd/collection-select/CollectionSelect.tsx +++ b/packages/core/client/src/schema-component/antd/collection-select/CollectionSelect.tsx @@ -17,7 +17,7 @@ function useOptions({ filter, isTableOid }: CollectionSelectProps) { const field: any = useField(); const ctx: any = useContext(FilterContext); const collection = useCollection(); - const targetCollection = isTableOid && (ctx?.collectionName || ctx?.field?.collectionName || collection.name); + const targetCollection = isTableOid && (ctx?.field?.collectionName || collection.name); const inheritCollections = useSelfAndChildrenCollections(targetCollection); const { collections = [] } = useCollectionManager(); const currentCollections = field?.dataSource