list/tree: Capitalize column headers

Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
This commit is contained in:
Paweł Gronowski
2024-08-16 13:48:26 +02:00
parent d417d06682
commit 0242a1e3c6

View File

@ -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)