From 625bde7d62d70713ee0d75889d0a89dd38e5ab3b Mon Sep 17 00:00:00 2001 From: Aaron Frase Date: Wed, 10 Jan 2024 09:09:18 -0500 Subject: [PATCH] Don't display image info since long lines mess with output --- cmd/shell/shell.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cmd/shell/shell.go b/cmd/shell/shell.go index 0da9852..1dfcdf5 100644 --- a/cmd/shell/shell.go +++ b/cmd/shell/shell.go @@ -43,9 +43,7 @@ var containerPromptTemplate = &promptui.SelectTemplates{ Inactive: " {{ .Name }}", Selected: fmt.Sprintf(`{{ "%s" | green }} {{ .Name | faint }}`, promptui.IconGood), Details: `{{ "Status:" | faint }} {{ .LastStatus }} -{{ "Health:" | faint }} {{ .Health }} -{{ "Image:" | faint }} {{ .Image }} -{{ "ImageDigest:" | faint }} {{ .ImageDigest }}`, +{{ "Health:" | faint }} {{ .Health }}`, } func NewCmdShell(f *factory.Factory) *cobra.Command {