Skip to content

Commit

Permalink
list/tree: Capitalize column headers
Browse files Browse the repository at this point in the history
Signed-off-by: Paweł Gronowski <[email protected]>
(cherry picked from commit 0242a1e)
Signed-off-by: Paweł Gronowski <[email protected]>
  • Loading branch information
vvoland committed Aug 16, 2024
1 parent 301d33d commit 96a885d
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
Expand Up @@ -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)
Expand Down

0 comments on commit 96a885d

Please sign in to comment.