Merge branch 'next' into develop

This commit is contained in:
nocobase[bot] 2025-03-31 14:52:03 +00:00
commit 6ffa450966

View File

@ -63,11 +63,10 @@ function SyncOptionSelect(props) {
if (trigger.sync != null) {
field.setValue(trigger.sync);
} else {
field.setInitialValue(false);
field.setInitialValue(props.value ?? false);
}
}
}, [record.id, field, workflowPlugin.triggers]);
}, [record.id, field, workflowPlugin.triggers, record.type, props.value]);
return <RadioWithTooltip {...props} />;
}