Omit participants metadata from pr view

This commit is contained in:
Toshiya Doi 2020-04-08 14:53:23 +09:00
parent 8fca78f584
commit 542314a9c3

View file

@ -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 != "" {