diff options
author | Michael Muré <batolettre@gmail.com> | 2020-09-27 13:35:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-27 13:35:06 +0200 |
commit | ae0529e3f54eb7bd3b464e2717c82db975fb88c9 (patch) | |
tree | 4acf22518cd20d91136b9cc940a1bb22d4763958 /commands/show.go | |
parent | 0198ad71d793edbebf6c7ee02243d86879fb0e45 (diff) | |
parent | 999e61224c1efe49496d6d84ba255544e74c524a (diff) | |
download | git-bug-ae0529e3f54eb7bd3b464e2717c82db975fb88c9.tar.gz |
Merge pull request #457 from zdenek-crha/bright_terminal_readability
Bright terminal readability
Diffstat (limited to 'commands/show.go')
-rw-r--r-- | commands/show.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/show.go b/commands/show.go index 77f315cc..9ebd1926 100644 --- a/commands/show.go +++ b/commands/show.go @@ -166,7 +166,7 @@ func showDefaultFormatter(env *Env, snapshot *bug.Snapshot) error { ) if comment.Message == "" { - message = colors.GreyBold("No description provided.") + message = colors.BlackBold(colors.WhiteBg("No description provided.")) } else { message = comment.Message } |