From 6bd9a0b1db8f3e4cdbde605816c0eb7e9e3a6d9e Mon Sep 17 00:00:00 2001 From: glax Date: Mon, 26 Aug 2024 12:47:46 +0200 Subject: [PATCH] Decrease update frequency of website --- Website/interaction.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Website/interaction.js b/Website/interaction.js index 5d35ac0..6f57bc9 100644 --- a/Website/interaction.js +++ b/Website/interaction.js @@ -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 -} \ No newline at end of file +}