diff options
author | Michael Muré <batolettre@gmail.com> | 2018-10-07 18:27:23 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-10-07 18:27:23 +0200 |
commit | 7cb7994cdae848053487d00c1730d1e865fb8623 (patch) | |
tree | bc9be185e81479d8d3e5b0fc636daea011a64e4c /termui/bug_table.go | |
parent | 03202fed493539c8d1fdcad7254687f951d0ca4a (diff) | |
download | git-bug-7cb7994cdae848053487d00c1730d1e865fb8623.tar.gz |
github: also pull users email
Diffstat (limited to 'termui/bug_table.go')
-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 a60e226e..8ad77b41 100644 --- a/termui/bug_table.go +++ b/termui/bug_table.go @@ -299,7 +299,7 @@ func (bt *bugTable) render(v *gocui.View, maxX int) { id := text.LeftPadMaxLine(snap.HumanId(), columnWidths["id"], 2) status := text.LeftPadMaxLine(snap.Status.String(), columnWidths["status"], 2) title := text.LeftPadMaxLine(snap.Title, columnWidths["title"], 2) - author := text.LeftPadMaxLine(person.Name, columnWidths["author"], 2) + author := text.LeftPadMaxLine(person.DisplayName(), columnWidths["author"], 2) summary := text.LeftPadMaxLine(snap.Summary(), columnWidths["summary"], 2) lastEdit := text.LeftPadMaxLine(humanize.Time(snap.LastEditTime()), columnWidths["lastEdit"], 2) |