fix: Switch to stream on applications logs

This commit is contained in:
Andras Bacsai 2022-04-18 00:44:08 +02:00
parent 630aa45c87
commit 1a83f2635f

View File

@ -92,14 +92,15 @@
logs = allLogs.slice(currentPage * 100 - 100, currentPage * 100);
}
async function loadNewerLogs() {
currentPage -= 1;
if (currentPage !== 1) {
clearInterval(loadLogsInterval);
endOfLogs = false;
loadLogsInterval = null;
currentPage -= 1;
logs = allLogs.slice(currentPage * 100 - 100, currentPage * 100);
} else {
startOfLogs = true;
loadLogs();
loadLogsInterval = setInterval(() => {
loadLogs();
}, 1000);