mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 11:46:46 +00:00
fix: updateAssociationValues (#1903)
This commit is contained in:
parent
920bdf8705
commit
0318034b7c
@ -1176,12 +1176,17 @@ export const useAssociationNames = (collection) => {
|
||||
if (schema) {
|
||||
const associations = getAssociationAppends(schema);
|
||||
const appends = flattenNestedList(associations);
|
||||
console.log(appends, associations);
|
||||
return { appends, updateAssociationValues: appends.filter((v) => associationValues.includes(v)) };
|
||||
return {
|
||||
appends,
|
||||
updateAssociationValues: appends.filter((item) => associationValues.some((suffix) => item.endsWith(suffix))),
|
||||
};
|
||||
}
|
||||
if (!schema) {
|
||||
const associations = getAssociationAppends(formSchema);
|
||||
const appends = flattenNestedList(associations);
|
||||
return { appends, updateAssociationValues: appends.filter((v) => associationValues.includes(v)) };
|
||||
return {
|
||||
appends,
|
||||
updateAssociationValues: appends.filter((item) => associationValues.some((suffix) => item.endsWith(suffix))),
|
||||
};
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user