Skip to content

Commit bdd735c

Browse files
authored
Merge pull request #150 from synapseq-foundation/feature/remote-min
feat: show "min" in list/search
2 parents 8415378 + 07d8d10 commit bdd735c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cmd/synapseq/remote.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,9 @@ func renderRemoteEntriesTable(entries []t.RemoteEntry) string {
210210
fmt.Fprintln(w, "ID\tDURATION\tCATEGORY\tCREATED")
211211

212212
for _, entry := range entries {
213-
fmt.Fprintf(w, "%s\t%d\t%s\t%s\n",
213+
fmt.Fprintf(w, "%s\t%s\t%s\t%s\n",
214214
entry.ID,
215-
entry.DurationMinutes,
215+
fmt.Sprintf("%d min", entry.DurationMinutes),
216216
entry.Category,
217217
shortDate(entry.CreatedAt),
218218
)

0 commit comments

Comments
 (0)