From 949364a8a4d2e2c1c07534b263f983dd647a39fa Mon Sep 17 00:00:00 2001 From: goingforstudying-ctrl Date: Thu, 25 Jun 2026 04:08:53 -0400 Subject: [PATCH] fix: add reasoningContent and reasoningFinished to PreviewRunningData type --- web/app/components/workflow/store/workflow/workflow-slice.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/app/components/workflow/store/workflow/workflow-slice.ts b/web/app/components/workflow/store/workflow/workflow-slice.ts index 5b8eed68ca6..7dfeddf87e3 100644 --- a/web/app/components/workflow/store/workflow/workflow-slice.ts +++ b/web/app/components/workflow/store/workflow/workflow-slice.ts @@ -11,6 +11,8 @@ type PreviewRunningData = WorkflowRunningData & { resultTabActive?: boolean resultText?: string resultTextSelectorKey?: string + reasoningContent?: Record + reasoningFinished?: boolean // human input form schema or data cached when node is in 'Paused' status extraContentAndFormData?: Record }