From 8cf817a5fdbad044e6883380945ceca55413ee52 Mon Sep 17 00:00:00 2001 From: JzoNg Date: Tue, 27 Jan 2026 15:02:45 +0800 Subject: [PATCH] fix: empty result judgement --- web/app/components/workflow/panel/workflow-preview.tsx | 1 + web/app/components/workflow/run/result-text.tsx | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/web/app/components/workflow/panel/workflow-preview.tsx b/web/app/components/workflow/panel/workflow-preview.tsx index 29bd71d8d1..7f23f5bc74 100644 --- a/web/app/components/workflow/panel/workflow-preview.tsx +++ b/web/app/components/workflow/panel/workflow-preview.tsx @@ -199,6 +199,7 @@ const WorkflowPreview = () => { )} void @@ -17,6 +18,7 @@ type ResultTextProps = { const ResultText: FC = ({ isRunning, + isPaused, outputs, error, onClick, @@ -37,7 +39,7 @@ const ResultText: FC = ({ )} - {!isRunning && !outputs && !error && !allFiles?.length && ( + {!isPaused && !isRunning && !outputs && !error && !allFiles?.length && (
{t('resultEmpty.title', { ns: 'runLog' })}