Skip to content

Commit 0242a1e

Browse files
committed
list/tree: Capitalize column headers
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
1 parent d417d06 commit 0242a1e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cli/command/image/tree.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ func printImageTree(dockerCLI command.Cli, images []topImage) error {
207207
_, _ = fmt.Fprint(out, strings.Repeat(" ", columnSpacing))
208208
}
209209

210-
_, _ = fmt.Fprint(out, h.Print(headerColor, h.Title))
210+
_, _ = fmt.Fprint(out, h.Print(headerColor, strings.ToUpper(h.Title)))
211211
}
212212

213213
_, _ = fmt.Fprintln(out)

0 commit comments

Comments
 (0)