diff options
Diffstat (limited to 'pkg/gui/diffview.go')
| -rw-r--r-- | pkg/gui/diffview.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/diffview.go b/pkg/gui/diffview.go index 8011de6..4ebf82e 100644 --- a/pkg/gui/diffview.go +++ b/pkg/gui/diffview.go @@ -28,7 +28,7 @@ func (gui *Gui) openCommitDiffView(g *gocui.Gui, v *gocui.View) error { } commit := entity.Commit commitDetail := "Hash: " + cyan.Sprint(commit.Hash) + "\n" + "Author: " + commit.Author + - "\n" + commit.Time + "\n" + "\n" + "\t\t" + commit.Message + "\n" + "\n" + commit.Time + "\n" + "\n" + "\t\t" + commit.Message + "\n" fmt.Fprintln(v, commitDetail) diff, err := entity.Diff(entity.Commit.Hash) if err != nil { |
