From 9b0f4a50e89477afcf3783688d7d837e8f4a5711 Mon Sep 17 00:00:00 2001 From: Tim Hwang Date: Wed, 29 Jul 2020 10:07:36 -0400 Subject: [PATCH] fix: fix Jira module title formatting Closes #942. Filing to get the ball rolling, happy to change anything. --- modules/jira/widget.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/jira/widget.go b/modules/jira/widget.go index 8cf3e253..10b4c97d 100644 --- a/modules/jira/widget.go +++ b/modules/jira/widget.go @@ -77,7 +77,7 @@ func (widget *Widget) content() (string, string, bool) { return widget.CommonSettings().Title, widget.err.Error(), true } - title := fmt.Sprintf("%s- [green]%s[white]", widget.CommonSettings().Title, widget.settings.projects) + title := widget.CommonSettings().Title str := fmt.Sprintf(" [%s]Assigned Issues[white]\n", widget.settings.common.Colors.Subheading)