diff --git a/ws/ws.go b/ws/ws.go index e8948a1691b4e9378eddab989ad85941a17f5bcb..101c3081630483ab9afee5824f0bab6142bd62b1 100644 --- a/ws/ws.go +++ b/ws/ws.go @@ -53,13 +53,13 @@ func (h Handler) RootHandler(w http.ResponseWriter, r *http.Request) { } data := struct { - Version string - Projects []project.Project - IsDashboard bool + Version string + Projects []project.Project + IsDashboard bool }{ - Version: *h.Version, - Projects: projectsWithReleases, - IsDashboard: true, + Version: *h.Version, + Projects: projectsWithReleases, + IsDashboard: true, } tmpl := template.Must(template.ParseFS(fs, "static/dashboard.html.tmpl", "static/head.html.tmpl", "static/header.html.tmpl", "static/footer.html.tmpl"))