From 7ef9e58f61131b878f3be9cc61b77e7fac8d2a0c Mon Sep 17 00:00:00 2001 From: Abiba Date: Tue, 26 May 2026 12:31:53 +0000 Subject: [PATCH] fix: restore /api/performance route in dashboard (was overwritten to /api/timeseries) --- dashboard/dashboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/dashboard.py b/dashboard/dashboard.py index fe3c3c2..6f2bd01 100644 --- a/dashboard/dashboard.py +++ b/dashboard/dashboard.py @@ -314,7 +314,7 @@ def api_scatter(): except Exception: pass return {"points": [], "count": 0} -@app.route("/api/timeseries") +@app.route("/api/performance") def api_performance(): window = request.args.get("window", "24") model = request.args.get("model", "all")