From 57942fcaf889f0dc47dee345a5b4cc47c60bcd5c Mon Sep 17 00:00:00 2001 From: Amanda Pinsker Date: Thu, 19 Mar 2020 13:30:35 -0700 Subject: [PATCH] Add unicode for merge states back in --- command/pr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/pr.go b/command/pr.go index 3755344b8..b7a26b8b7 100644 --- a/command/pr.go +++ b/command/pr.go @@ -433,7 +433,7 @@ func printPrs(w io.Writer, totalCount int, prs ...api.PullRequest) { } } else { s := strings.Title(strings.ToLower(pr.State)) - fmt.Fprintf(w, "%s", prStateColorFunc(s)) + fmt.Fprintf(w, "- %s", prStateColorFunc(s)) } fmt.Fprint(w, "\n")