mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 06:46:38 +00:00
fix: action linkage rule not effect in tree collection (#2713)
This commit is contained in:
parent
e90eec7031
commit
d7a00d2581
@ -59,14 +59,13 @@ export const Action: ComposedAction = observer(
|
||||
const { modal } = App.useApp();
|
||||
let actionTitle = title || compile(fieldSchema.title);
|
||||
actionTitle = lodash.isString(actionTitle) ? t(actionTitle) : actionTitle;
|
||||
|
||||
useEffect(() => {
|
||||
field.linkageProperty = {};
|
||||
linkageRules
|
||||
.filter((k) => !k.disabled)
|
||||
.forEach((v) => {
|
||||
return v.actions?.map((h) => {
|
||||
linkageAction(h.operator, field, v.condition, values);
|
||||
linkageAction(h.operator, field, v.condition, form.initialValues);
|
||||
});
|
||||
});
|
||||
}, [linkageRules, values, designable]);
|
||||
|
Loading…
Reference in New Issue
Block a user