Fix tests in pipeline

This commit is contained in:
Deluan
2020-04-06 17:01:32 -04:00
parent c1afe70d98
commit b930c7253a
4 changed files with 24 additions and 8 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ func (app *Router) routes(path string) http.Handler {
})
// Serve UI app assets
r.Handle("/", ServeIndex(app.ds))
r.Handle("/", ServeIndex(app.ds, assets.AssetFile()))
r.Handle("/*", http.StripPrefix(path, http.FileServer(assets.AssetFile())))
return r