fix: default to 120 samples on fe
This commit is contained in:
parent
4a04612393
commit
201cae7ad1
1 changed files with 1 additions and 1 deletions
|
@ -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]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue