X Tutup
Skip to content

Commit 39718cd

Browse files
author
vilmibm
committed
just hide empty descriptions
1 parent 00e8c07 commit 39718cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/gist/view/view.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ func promptGists(client *http.Client, cs *iostreams.ColorScheme) (gistID string,
194194

195195
for i, gist := range gists {
196196
gistIDs[i] = gist.ID
197-
description := "<no description>"
197+
description := ""
198198
gistName := ""
199199

200200
if gist.Description != "" {

0 commit comments

Comments
 (0)
X Tutup