summaryrefslogtreecommitdiffstats
path: root/pkg/commands/commit.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/commands/commit.go')
-rw-r--r--pkg/commands/commit.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/commands/commit.go b/pkg/commands/commit.go
index 740bb5209..f60e98abd 100644
--- a/pkg/commands/commit.go
+++ b/pkg/commands/commit.go
@@ -61,7 +61,8 @@ func (c *Commit) GetDisplayStrings(isFocused bool) []string {
if c.Action != "" {
actionString = cyan.Sprint(utils.WithPadding(c.Action, 7)) + " "
} else if len(c.Tags) > 0 {
- tagString = utils.ColoredString(strings.Join(c.Tags, " "), color.FgMagenta) + " "
+ tagColor := color.New(color.FgMagenta, color.Bold)
+ tagString = utils.ColoredStringDirect(strings.Join(c.Tags, " "), tagColor) + " "
}
return []string{shaColor.Sprint(c.Sha[:8]), actionString + tagString + defaultColor.Sprint(c.Name)}