From 201cae7ad1b285ce17b36369e61724fd5053669b Mon Sep 17 00:00:00 2001 From: alemi Date: Mon, 2 Dec 2024 23:48:31 +0100 Subject: [PATCH] fix: default to 120 samples on fe --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 5f79803..6c946f2 100644 --- a/index.html +++ b/index.html @@ -97,7 +97,7 @@ async function updateStatus() { let out = ""; for (let key of keys) { - let res = await fetch(`/api/status/${key}`); + let res = await fetch(`/api/status/${key}?limit=120`); let history = await res.json(); out += card(key, history, status[key]); }