mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 14:46:13 +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);
|
collectAppends(condition);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
const isTreeCollection =
|
||||||
const isTreeCollection = isAssociationField && getCollection(collectionField.target)?.template === 'tree';
|
isAssociationField && getCollection(collectionField.target, dataSource)?.template === 'tree';
|
||||||
if (collectionField && (isAssociationField || isAssociationSubfield) && s['x-component'] !== 'TableField') {
|
if (collectionField && (isAssociationField || isAssociationSubfield) && s['x-component'] !== 'TableField') {
|
||||||
const fieldPath = !isAssociationField && isAssociationSubfield ? getAssociationPath(s.name) : s.name;
|
const fieldPath = !isAssociationField && isAssociationSubfield ? getAssociationPath(s.name) : s.name;
|
||||||
const path = prefix === '' || !prefix ? fieldPath : prefix + '.' + fieldPath;
|
const path = prefix === '' || !prefix ? fieldPath : prefix + '.' + fieldPath;
|
||||||
|
Loading…
Reference in New Issue
Block a user