From 899b296bfe91b52680921d09c4653563f17aa27a Mon Sep 17 00:00:00 2001 From: jokob-sk Date: Thu, 4 Aug 2022 23:20:30 +1000 Subject: [PATCH] optimisations #3 increased auto-refresh time from 5s to 1min --- front/js/pialert_common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/js/pialert_common.js b/front/js/pialert_common.js index 9a4e5524..3cfd073c 100644 --- a/front/js/pialert_common.js +++ b/front/js/pialert_common.js @@ -187,7 +187,7 @@ function stopTimerRefreshData () { function newTimerRefreshData (refeshFunction) { timerRefreshData = setTimeout (function() { refeshFunction(); - }, 5000); + }, 60000); }