chore: NAME -> IMAGE column name

This commit is contained in:
Pasha Sviderski
2025-10-07 15:12:05 +10:00
parent 3e804d9ecc
commit c6d18f5d49
+1 -1
View File
@@ -107,7 +107,7 @@ func list(ctx context.Context, uncli *cli.CLI, opts listOptions) error {
// Print the images in a table format. // Print the images in a table format.
tw := tabwriter.NewWriter(os.Stdout, 0, 0, 3, ' ', 0) 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) return fmt.Errorf("write header: %w", err)
} }