From 542314a9c37389693c4e12da65f9008db6cced40 Mon Sep 17 00:00:00 2001 From: Toshiya Doi Date: Wed, 8 Apr 2020 14:53:23 +0900 Subject: [PATCH] Omit participants metadata from `pr view` --- command/pr.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/command/pr.go b/command/pr.go index b1241b0bc..21c3853cd 100644 --- a/command/pr.go +++ b/command/pr.go @@ -357,10 +357,6 @@ func printPrPreview(out io.Writer, pr *api.PullRequest) error { fmt.Fprint(out, utils.Bold("Milestone: ")) fmt.Fprintln(out, pr.Milestone.Title) } - if participants := prParticipantList(*pr); participants != "" { - fmt.Fprint(out, utils.Bold("Participants: ")) - fmt.Fprintln(out, participants) - } // Body if pr.Body != "" {