mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 08:21:53 +00:00
fix: useCreateActionProps (#1971)
This commit is contained in:
parent
4b9150d448
commit
7e30b046d9
@ -33,6 +33,7 @@ const EditableAssociationField = observer((props: any) => {
|
||||
});
|
||||
setTimeout(() => {
|
||||
form.setValuesIn(field.props.name, values);
|
||||
field.onInput(values)
|
||||
}, 100);
|
||||
} else {
|
||||
const value = {
|
||||
@ -40,6 +41,7 @@ const EditableAssociationField = observer((props: any) => {
|
||||
};
|
||||
setTimeout(() => {
|
||||
form.setValuesIn(field.props.name, value);
|
||||
field.onInput(value)
|
||||
}, 100);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user