PR listing: add --fields & expose additional fields #415

Merged
6543 merged 9 commits from justusbunsi/tea:feature/show-labels-for-pulls into master 2021-09-28 20:36:34 +00:00
Showing only changes of commit c65cd58170 - Show all commits

View File

@ -78,8 +78,8 @@ func formatBoolean(b bool, allowIcons bool) string {
return fmt.Sprintf("%v", b)
}
var styled string
if styled = "✔"; !b {
styled := "✔"
if !b {
styled = "✖"
}