修复暂停继续

This commit is contained in:
北枳 2025-08-19 00:40:41 +08:00
parent ed4dff0c93
commit 692a6fdd8d

View File

@ -119,7 +119,7 @@ export function useWorkflowData() {
}, [scriptBlocksMemo]);
// 监听继续 请求更新数据
useUpdateEffect(() => {
if (taskObject.status !== 'IN_PROGRESS') {
if (taskObject.status === 'COMPLETED' || taskObject.status === 'FAILED') {
return;
}
if (isPauseWorkFlow) {