Skip to content

Commit f415c0f

Browse files
committed
fix(dashboard): device table not updating
1 parent 5813f9e commit f415c0f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

services/dashboard/routes/overview.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ func (t *OverviewRoute) deviceListPage() http.HandlerFunc {
190190
if res.Links.GetNext() != "" {
191191
u, err := url.Parse(res.Links.GetNext())
192192
if err == nil {
193-
page.DevicesNextPage = "/overview/devices/table?cursor=" + u.Query().Get("cursor")
193+
page.DevicesNextPage = views.U("/overview/devices/table?cursor=%s", u.Query().Get("cursor"))
194194
}
195195
}
196196

0 commit comments

Comments
 (0)