diff options
author | Michael Muré <batolettre@gmail.com> | 2020-07-14 19:21:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 19:21:45 +0200 |
commit | b4158dbd9e7904ffe0cc9f068b5e9b5fb1f5e188 (patch) | |
tree | 11ddad2f7475a61d0ff141c0ec0cf6d291997449 /termui | |
parent | 47b12555611d515f922c2017e77d1dac80df5bd3 (diff) | |
parent | 54d4307a2e065ed41f4ee786805e1830fce5e320 (diff) | |
download | git-bug-b4158dbd9e7904ffe0cc9f068b5e9b5fb1f5e188.tar.gz |
Merge pull request #427 from wavexx/trim_titles
Trim titles in list views
Diffstat (limited to 'termui')
-rw-r--r-- | termui/bug_table.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/termui/bug_table.go b/termui/bug_table.go index e57a2b15..c02570db 100644 --- a/termui/bug_table.go +++ b/termui/bug_table.go @@ -319,7 +319,7 @@ func (bt *bugTable) render(v *gocui.View, maxX int) { id := text.LeftPadMaxLine(excerpt.Id.Human(), columnWidths["id"], 1) status := text.LeftPadMaxLine(excerpt.Status.String(), columnWidths["status"], 1) labels := text.TruncateMax(labelsTxt.String(), minInt(columnWidths["title"]-2, 10)) - title := text.LeftPadMaxLine(excerpt.Title, columnWidths["title"]-text.Len(labels), 1) + title := text.LeftPadMaxLine(strings.TrimSpace(excerpt.Title), columnWidths["title"]-text.Len(labels), 1) author := text.LeftPadMaxLine(authorDisplayName, columnWidths["author"], 1) comments := text.LeftPadMaxLine(summaryTxt, columnWidths["comments"], 1) lastEdit := text.LeftPadMaxLine(humanize.Time(lastEditTime), columnWidths["lastEdit"], 1) |