aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/main.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2026-01-14 15:48:51 +0100
committerDmitry Vyukov <dvyukov@google.com>2026-01-15 10:08:05 +0000
commit82a2649e8d7d7a5cc81051c0a3520368a98cfbb2 (patch)
tree92e1ff210804f948e3e0140f0a96d00a127e35f0 /dashboard/app/main.go
parent3b7a3359989abfb9ee0c821fdc0a8be33f7e996d (diff)
dashboard/app: improve AI UI
A bag of minor assorted improvements to data formatting. + show job results in the jobs table
Diffstat (limited to 'dashboard/app/main.go')
-rw-r--r--dashboard/app/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/main.go b/dashboard/app/main.go
index 30a30eb84..e9a1cf106 100644
--- a/dashboard/app/main.go
+++ b/dashboard/app/main.go
@@ -84,7 +84,7 @@ func initHTTPHandlers() {
http.Handle("/"+ns+"/backports", handlerWrapper(handleBackports))
http.Handle("/"+ns+"/s/", handlerWrapper(handleSubsystemPage))
http.Handle("/"+ns+"/manager/", handlerWrapper(handleManagerPage))
- http.Handle("/"+ns+"/ai/", handlerWrapper(handleAIJobsPage))
+ http.Handle("/"+ns+"/ai", handlerWrapper(handleAIJobsPage))
}
http.HandleFunc("/cron/cache_update", cacheUpdate)
http.HandleFunc("/cron/minute_cache_update", handleMinuteCacheUpdate)