From 0242a1e3c60ad25bfac73a45cf0fb00a8ddd1774 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Fri, 16 Aug 2024 13:48:26 +0200 Subject: [PATCH] list/tree: Capitalize column headers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Gronowski --- cli/command/image/tree.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/command/image/tree.go b/cli/command/image/tree.go index ffaa70711a..0c114641aa 100644 --- a/cli/command/image/tree.go +++ b/cli/command/image/tree.go @@ -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)