fix(plugin-workflow): temp disable validation of collection field in node (#928)

This commit is contained in:
Junyi 2022-10-19 09:24:09 +08:00 committed by chenos
parent 8e087840ca
commit 5992952872

View File

@ -60,7 +60,8 @@ function useUpdateAction() {
message.error(t('Node in executed workflow cannot be modified')); message.error(t('Node in executed workflow cannot be modified'));
return; return;
} }
await form.submit(); // TODO: how to do validation separately for each field? especially disabled for dynamic fields?
// await form.submit();
await api.resource('flow_nodes', data.id).update({ await api.resource('flow_nodes', data.id).update({
filterByTk: data.id, filterByTk: data.id,
values: { values: {