diff --git a/command/pr.go b/command/pr.go index 7157d4a71..7a1b00047 100644 --- a/command/pr.go +++ b/command/pr.go @@ -405,11 +405,11 @@ func printPrs(w io.Writer, totalCount int, prs ...api.PullRequest) { checks := pr.ChecksStatus() reviews := pr.ReviewStatus() - if pr.State != "OPEN" || checks.Total > 0 || reviews.ChangesRequested || reviews.Approved { - fmt.Fprintf(w, "\n ") - } - if pr.State == "OPEN" { + if checks.Total > 0 || reviews.ChangesRequested || reviews.Approved { + fmt.Fprintf(w, "\n ") + } + if checks.Total > 0 { var summary string if checks.Failing > 0 {