We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63af4a9 commit 67768baCopy full SHA for 67768ba
main.go
@@ -130,13 +130,13 @@ func printBranches(branches []Branch) {
130
}
131
132
func getIssueNoColor(state PullRequestState, isDraft bool) color.Attribute {
133
- if isDraft {
134
- return color.FgHiBlack
135
- }
136
-
137
switch state {
138
case Open:
139
- return color.FgGreen
+ if isDraft {
+ return color.FgHiBlack
+ } else {
+ return color.FgGreen
+ }
140
case Merged:
141
return color.FgMagenta
142
case Closed:
0 commit comments