diff options
Diffstat (limited to 'termui/show_bug.go')
-rw-r--r-- | termui/show_bug.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/termui/show_bug.go b/termui/show_bug.go index 6296c445..0710fa34 100644 --- a/termui/show_bug.go +++ b/termui/show_bug.go @@ -378,7 +378,7 @@ func (sb *showBug) renderMain(g *gocui.Gui, mainView *gocui.View) error { // emptyMessagePlaceholder return a formatted placeholder for an empty message func emptyMessagePlaceholder() string { - return colors.GreyBold("No description provided.") + return colors.BlackBold(colors.WhiteBg("No description provided.")) } func (sb *showBug) createOpView(g *gocui.Gui, name string, x0 int, y0 int, maxX int, height int, selectable bool) (*gocui.View, error) { |