Skip to content

Commit

Permalink
cmd/entries: Reformat output
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphexion committed Sep 11, 2021
1 parent 5f230d7 commit 10d7eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/entries.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ func outputEntry(entry *noko.Entry) {
minutes := entry.Minutes
hours := minutes / 60
minutes -= hours * 60
fmt.Printf("%s %10s %2dh%02d: %s\n", entry.Date, entry.User.FirstName, hours, minutes, entry.Description)
fmt.Printf("%s %50s %15s %2dh%02d: %s\n", entry.Date, entry.Project.Name, entry.User.FirstName, hours, minutes, entry.Description)
}

0 comments on commit 10d7eaa

Please sign in to comment.