summaryrefslogtreecommitdiffstats
path: root/pkg/commands/branch.go
diff options
context:
space:
mode:
authorGlenn Vriesman <glenn.vriesman@gmail.com>2018-12-10 12:26:30 +0100
committerJesse Duffield <jessedduffield@gmail.com>2018-12-11 09:38:33 +1100
commit822dc5dada5610dfdea7013883a375ea35c09781 (patch)
tree15297ed67424f3534e1638893699de167c5a67a4 /pkg/commands/branch.go
parentb95abd95ef249e506c175c25deb220f72103aaf3 (diff)
Moved push-pullables status to the end
Diffstat (limited to 'pkg/commands/branch.go')
-rw-r--r--pkg/commands/branch.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/branch.go b/pkg/commands/branch.go
index 49655c41a..419a106d2 100644
--- a/pkg/commands/branch.go
+++ b/pkg/commands/branch.go
@@ -22,7 +22,7 @@ type Branch struct {
func (b *Branch) GetDisplayStrings() []string {
displayName := utils.ColoredString(b.Name, b.GetColor())
if b.Selected && b.Pushables != "" && b.Pullables != "" {
- displayName = fmt.Sprintf("ā†‘%sā†“%s %s", b.Pushables, b.Pullables, displayName)
+ displayName = fmt.Sprintf("%s ā†‘%sā†“%s", displayName, b.Pushables, b.Pullables)
}
return []string{b.Recency, displayName}