From e51f2d06d07862a9813ba14f4a71cac47665d5f5 Mon Sep 17 00:00:00 2001 From: Jokob-sk Date: Thu, 4 Apr 2024 07:41:25 +1100 Subject: [PATCH] UI auto-refresh #614 --- 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 e5be6dd0..7daf48a2 100755 --- a/front/js/pialert_common.js +++ b/front/js/pialert_common.js @@ -1261,7 +1261,7 @@ executeOnce(); setTimeout(() => { const refreshTime = getSetting("UI_REFRESH"); if (refreshTime && refreshTime !== "0" && refreshTime !== "") { - newTimerRefreshData(clearCache, refreshTime); + newTimerRefreshData(clearCache, parseInt(refreshTime)*1000); } }, 10000);