From c6d18f5d49aa3b25e8db0665cfe2a2eda237df82 Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Fri, 3 Oct 2025 21:17:26 +1000 Subject: [PATCH] chore: NAME -> IMAGE column name --- cmd/uncloud/image/ls.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/uncloud/image/ls.go b/cmd/uncloud/image/ls.go index 92fc0b15..d8ad53cd 100644 --- a/cmd/uncloud/image/ls.go +++ b/cmd/uncloud/image/ls.go @@ -107,7 +107,7 @@ func list(ctx context.Context, uncli *cli.CLI, opts listOptions) error { // Print the images in a table format. tw := tabwriter.NewWriter(os.Stdout, 0, 0, 3, ' ', 0) - if _, err = fmt.Fprintln(tw, "MACHINE\tNAME\tIMAGE ID\tCREATED\tSIZE\tSTORE"); err != nil { + if _, err = fmt.Fprintln(tw, "MACHINE\tIMAGE\tIMAGE ID\tCREATED\tSIZE\tSTORE"); err != nil { return fmt.Errorf("write header: %w", err) }