diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-23 19:19:16 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-23 19:19:16 +0200 |
commit | e7648996c8f278d061fe03a5c4d255049da765e5 (patch) | |
tree | 2917891d130853b24a375ef00b68fe14c8228296 /termui | |
parent | 16f55e3f4d560330a638986130d27fd067300169 (diff) | |
download | git-bug-e7648996c8f278d061fe03a5c4d255049da765e5.tar.gz |
bug: add a new BugExerpt that hold a subset of a bug state for efficient sorting and retrieval
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 169dd7c1..1158f768 100644 --- a/termui/bug_table.go +++ b/termui/bug_table.go @@ -290,7 +290,7 @@ func (bt *bugTable) render(v *gocui.View, maxX int) { title := util.LeftPaddedString(snap.Title, columnWidths["title"], 2) author := util.LeftPaddedString(person.Name, columnWidths["author"], 2) summary := util.LeftPaddedString(snap.Summary(), columnWidths["summary"], 2) - lastEdit := util.LeftPaddedString(humanize.Time(snap.LastEdit()), columnWidths["lastEdit"], 2) + lastEdit := util.LeftPaddedString(humanize.Time(snap.LastEditTime()), columnWidths["lastEdit"], 2) fmt.Fprintf(v, "%s %s %s %s %s %s\n", util.Cyan(id), |