diff options
Diffstat (limited to 'view/timers_list.templ')
-rw-r--r-- | view/timers_list.templ | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/timers_list.templ b/view/timers_list.templ index 7367c50..e1731d4 100644 --- a/view/timers_list.templ +++ b/view/timers_list.templ @@ -6,7 +6,7 @@ import ( )
templ timer(t model.Timer) {
- <p><a href={ templ.URL(fmt.Sprintf("/timer/%s", t.Id)) }>{ t.Name }</a></p>
+ <p><a href={ templ.URL(fmt.Sprint("/timer/", t.Id)) }>{ t.Name }</a></p>
}
templ TimersList(timers []model.Timer) {
|