Change summary
ws/ws.go | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
Detailed changes
@@ -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"))