From e830e26034d8bed963885b3ba5a7eab410a91b76 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Thu, 8 Aug 2024 10:45:13 -0600 Subject: [PATCH] fix: padding --- src/components/multi-stage-output.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/multi-stage-output.tsx b/src/components/multi-stage-output.tsx index 2d465e2..dc2c27a 100644 --- a/src/components/multi-stage-output.tsx +++ b/src/components/multi-stage-output.tsx @@ -206,7 +206,7 @@ export function Stages({ title, }: StagesProps): React.ReactNode { return ( - + {preStagesBlock && preStagesBlock.length > 0 && ( @@ -314,7 +314,7 @@ class CIMultiStageOutput> { this.lastUpdateTime = Date.now() ux.stdout(`───── ${this.title} ─────`) - ux.stdout('Steps:') + ux.stdout('Stages:') for (const stage of this.stages) { ux.stdout(`${this.stages.indexOf(stage) + 1}. ${capitalCase(stage)}`) }