Skip to content

Commit

Permalink
fix: padding
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Aug 8, 2024
1 parent 55ab463 commit e830e26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/multi-stage-output.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ export function Stages({
title,
}: StagesProps): React.ReactNode {
return (
<Box flexDirection="column" paddingTop={1}>
<Box flexDirection="column" paddingTop={1} paddingBottom={1}>
<Divider title={title} />

{preStagesBlock && preStagesBlock.length > 0 && (
Expand Down Expand Up @@ -314,7 +314,7 @@ class CIMultiStageOutput<T extends Record<string, unknown>> {
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)}`)
}
Expand Down

0 comments on commit e830e26

Please sign in to comment.