From 538949679fd9056a5fbde140668babe6ed18f650 Mon Sep 17 00:00:00 2001 From: Shane C Date: Wed, 7 Aug 2024 14:40:46 -0400 Subject: [PATCH] fix spacing --- displaylist/displaylist.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/displaylist/displaylist.go b/displaylist/displaylist.go index 7af6046..e6f719e 100644 --- a/displaylist/displaylist.go +++ b/displaylist/displaylist.go @@ -18,7 +18,7 @@ type Item struct { func New(opts ListOptions) { - fmt.Println(tui.FgColorGrey + "[ " + tui.Format(tui.FgColorGold, tui.FmtUnderline) + opts.Title + tui.Format(tui.FmtUnderlineReset, tui.FgColorGrey) + " " + " ]" + tui.FmtReset) + fmt.Println(tui.FgColorGrey + "[ " + tui.Format(tui.FgColorGold, tui.FmtUnderline) + opts.Title + tui.Format(tui.FmtUnderlineReset, tui.FgColorGrey) + " ]" + tui.FmtReset) for _, item := range opts.Items { fmt.Println(itemString(item.Key, item.Value))