Skip to content

Commit

Permalink
style: align check suite state in tabular view
Browse files Browse the repository at this point in the history
  • Loading branch information
dhth committed Aug 18, 2024
1 parent 3d79542 commit cd56118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ui/view.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func getTabularOutput(config types.Config, results []gh.ResultData) string {
resultsDate := "(" + rr.CreatedAt.Time.Format(dateFormat) + ")"
var conclusion string
if !rr.CheckSuite.FinishedSuccessfully() {
conclusion = fmt.Sprintf(" %s", rr.CheckSuite.ConclusionOrState())
conclusion = fmt.Sprintf(" %s ", rr.CheckSuite.ConclusionOrState())
}
row = append(row, fmt.Sprintf("%s%s%s",
RightPadTrim(fmt.Sprintf("%d", rr.RunNumber), runNumberPadding),
Expand Down

0 comments on commit cd56118

Please sign in to comment.