Decrease update frequency of website

This commit is contained in:
glax 2024-08-26 12:47:46 +02:00
parent c72e152a7e
commit 6bd9a0b1db

View File

@ -174,7 +174,7 @@ function Setup(){
}
setInterval(() => {
UpdateJobs();
}, 1000);
}, 5000);
});
//Clear the previous values if any exist.
searchBox.value = "";
@ -873,4 +873,4 @@ const stringToColour = (str) => {
colour += value.toString(16).padStart(2, '0')
}
return colour
}
}