From feab9412dffe5772048aad29893c4cb01d566387 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Wed, 21 Nov 2018 18:56:12 +0100 Subject: WIP identity in git --- termui/bug_table.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'termui') diff --git a/termui/bug_table.go b/termui/bug_table.go index 13d86aa7..ba946c86 100644 --- a/termui/bug_table.go +++ b/termui/bug_table.go @@ -6,6 +6,7 @@ import ( "github.com/MichaelMure/git-bug/bug" "github.com/MichaelMure/git-bug/cache" + "github.com/MichaelMure/git-bug/identity" "github.com/MichaelMure/git-bug/util/colors" "github.com/MichaelMure/git-bug/util/text" "github.com/MichaelMure/gocui" @@ -289,7 +290,7 @@ func (bt *bugTable) render(v *gocui.View, maxX int) { columnWidths := bt.getColumnWidths(maxX) for _, b := range bt.bugs { - person := bug.Person{} + person := &identity.Identity{} snap := b.Snapshot() if len(snap.Comments) > 0 { create := snap.Comments[0] -- cgit