Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
list/tree: Capitalize column headers
Browse files Browse the repository at this point in the history
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
vvoland committed Aug 16, 2024
1 parent 6b1ef79 commit 1f98b33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/command/image/tree.go
Original file line number Diff line number Diff line change
@@ -207,7 +207,7 @@ func printImageTree(dockerCLI command.Cli, images []topImage) error {
_, _ = fmt.Fprint(out, strings.Repeat(" ", columnSpacing))
}

_, _ = fmt.Fprint(out, h.Print(headerColor, h.Title))
_, _ = fmt.Fprint(out, h.Print(headerColor, strings.ToUpper(h.Title)))
}

_, _ = fmt.Fprintln(out)

0 comments on commit 1f98b33

Please sign in to comment.