diff --git a/web-console/src/views/workbench-view/execution-stages-pane/execution-stages-pane.tsx b/web-console/src/views/workbench-view/execution-stages-pane/execution-stages-pane.tsx index 250ddaea8a4..1335cd7163a 100644 --- a/web-console/src/views/workbench-view/execution-stages-pane/execution-stages-pane.tsx +++ b/web-console/src/views/workbench-view/execution-stages-pane/execution-stages-pane.tsx @@ -604,13 +604,14 @@ ${title} uncompressed size: ${formatBytesCompact( {dataProcessedShuffle(stage)} )} - {stages.hasCounterForStage(stage, 'segmentGenerationProgress') && ( - <> -
- {dataProcessedSegmentGeneration(stage, 'rowsMerged')} - {dataProcessedSegmentGeneration(stage, 'rowsPushed')} - - )} + {stages.hasCounterForStage(stage, 'segmentGenerationProgress') && + stages.getTotalSegmentGenerationProgressForStage(stage, 'rowsMerged') > 0 && ( + <> +
+ {dataProcessedSegmentGeneration(stage, 'rowsMerged')} + {dataProcessedSegmentGeneration(stage, 'rowsPushed')} + + )} ); },