From 39718cd5ca018364c5d98aa69bb00913fae9484e Mon Sep 17 00:00:00 2001 From: vilmibm Date: Mon, 1 Mar 2021 16:07:04 -0600 Subject: [PATCH] just hide empty descriptions --- pkg/cmd/gist/view/view.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/gist/view/view.go b/pkg/cmd/gist/view/view.go index c221a0267..176d565ef 100644 --- a/pkg/cmd/gist/view/view.go +++ b/pkg/cmd/gist/view/view.go @@ -194,7 +194,7 @@ func promptGists(client *http.Client, cs *iostreams.ColorScheme) (gistID string, for i, gist := range gists { gistIDs[i] = gist.ID - description := "" + description := "" gistName := "" if gist.Description != "" {