diff --git a/list/list.go b/list/list.go index 12d3e82..e61b5d3 100644 --- a/list/list.go +++ b/list/list.go @@ -218,7 +218,7 @@ func (l *ListData) renderList() { l.strLengths = append(l.strLengths, len(removeANSIEscapeCodes(listNotice))) fmt.Print(listNotice) - listTitle := tui.FgColorGrey + "[ " + tui.Format(tui.FgColorGold, tui.FmtUnderline) + currentPage.Title + ":" + tui.FgColorGrey + " ]" + tui.FmtReset + "\n" + listTitle := tui.FgColorGrey + "[ " + tui.Format(tui.FgColorGold, tui.FmtUnderline) + currentPage.Title + ":" + tui.Format(tui.FmtUnderlineReset, tui.FgColorGrey) + " ]" + tui.FmtReset + "\n" l.strLengths = append(l.strLengths, len(removeANSIEscapeCodes(listTitle))) fmt.Print(listTitle)