Implement node filter in frontend, fix backend

- Add running job count and link to list to single node view
This commit is contained in:
Christoph Kluge
2023-06-30 12:01:27 +02:00
parent b5a7249ad5
commit c04aea89c9
4 changed files with 85 additions and 16 deletions

View File

@@ -184,6 +184,9 @@ func buildFilterPresets(query url.Values) map[string]interface{} {
}
}
}
if query.Get("node") != "" {
filterPresets["node"] = query.Get("node")
}
if query.Get("numNodes") != "" {
parts := strings.Split(query.Get("numNodes"), "-")
if len(parts) == 2 {