mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 10:17:00 +00:00
fix: getCollection bug (#3656)
This commit is contained in:
parent
12ba7cd9d0
commit
2fc13c180c
@ -1273,8 +1273,8 @@ export const useAssociationNames = (dataSource?: string) => {
|
||||
collectAppends(condition);
|
||||
});
|
||||
}
|
||||
|
||||
const isTreeCollection = isAssociationField && getCollection(collectionField.target)?.template === 'tree';
|
||||
const isTreeCollection =
|
||||
isAssociationField && getCollection(collectionField.target, dataSource)?.template === 'tree';
|
||||
if (collectionField && (isAssociationField || isAssociationSubfield) && s['x-component'] !== 'TableField') {
|
||||
const fieldPath = !isAssociationField && isAssociationSubfield ? getAssociationPath(s.name) : s.name;
|
||||
const path = prefix === '' || !prefix ? fieldPath : prefix + '.' + fieldPath;
|
||||
|
Loading…
Reference in New Issue
Block a user