summaryrefslogtreecommitdiff
path: root/pkg/gui/textstyle.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/textstyle.go')
-rw-r--r--pkg/gui/textstyle.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/gui/textstyle.go b/pkg/gui/textstyle.go
index 6820f1c..8bee560 100644
--- a/pkg/gui/textstyle.go
+++ b/pkg/gui/textstyle.go
@@ -55,7 +55,8 @@ func (gui *Gui) displayString(entity *git.RepoEntity) string {
prefix = prefix + pushable + ws + entity.Branch.Pushables + ws +
pullable + ws + entity.Branch.Pullables + ws + confidentArrow + ws
} else {
- prefix = prefix + unkown + ws + unconfidentArrow + ws
+ prefix = prefix + pushable + ws + yellow.Sprint(entity.Branch.Pushables) + ws +
+ pullable + ws + yellow.Sprint(entity.Branch.Pullables) + ws + unconfidentArrow + ws
}
branch := adjustTextLength(entity.Branch.Name, maxBranchLength)