From d600709e9e77ba9b03b743a9b005d4aa12e3764e Mon Sep 17 00:00:00 2001 From: Toshiya Doi Date: Wed, 8 Apr 2020 13:50:13 +0900 Subject: [PATCH] Omit participants metadata from `issue view` --- command/issue.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/command/issue.go b/command/issue.go index 2add995af..f396afbbb 100644 --- a/command/issue.go +++ b/command/issue.go @@ -284,10 +284,6 @@ func printIssuePreview(out io.Writer, issue *api.Issue) error { fmt.Fprint(out, utils.Bold("Milestone: ")) fmt.Fprintln(out, issue.Milestone.Title) } - if participants := issueParticipantList(*issue); participants != "" { - fmt.Fprint(out, utils.Bold("Participants: ")) - fmt.Fprintln(out, participants) - } // Body if issue.Body != "" {