Skip to content

Commit

Permalink
fix: time format
Browse files Browse the repository at this point in the history
closes #5
  • Loading branch information
caarlos0 committed Apr 29, 2024
1 parent 2dc45a7 commit 917dd56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ui/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (m model) View() string {
t := m.t.In(m.tz)
s := header.Render("Hallo!") + "\n\n"
s += "Heute ist " + italic.Render(uhr.Weekday(m.t)) + ".\n"
s += "Es ist jetzt " + italic.Render(t.Format("15.04")) + ", aber du kannst auch sagen:\n"
s += "Es ist jetzt " + italic.Render(t.Format("15:04")) + ", aber du kannst auch sagen:\n"
for _, l := range uhr.Uhr(t) {
s += list.Render("- ") + italic.Render(l) + "\n"
}
Expand Down

0 comments on commit 917dd56

Please sign in to comment.