mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
Change the LIMIT to 100 to ensure enough data for even a 4K display (3840px wide)
This commit is contained in:
parent
dfb921b319
commit
5084d2dcb2
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ router.get("/api/status-page/heartbeat/:slug", cache("1 minutes"), async (reques
|
|||
SELECT * FROM heartbeat
|
||||
WHERE monitor_id = ?
|
||||
ORDER BY time DESC
|
||||
LIMIT 50
|
||||
LIMIT 100
|
||||
`, [
|
||||
monitorID,
|
||||
]);
|
||||
|
|
Loading…
Reference in a new issue