Omit participants metadata from issue view

This commit is contained in:
Toshiya Doi 2020-04-08 13:50:13 +09:00
parent f14459c451
commit d600709e9e

View file

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