From 88a0574e86298e078309aa28576f924c35540d15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Mon, 23 Feb 2026 13:15:17 +0100 Subject: [PATCH] fix i js --- static/js/progress.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/js/progress.js b/static/js/progress.js index 4bd21b5..35e9a31 100644 --- a/static/js/progress.js +++ b/static/js/progress.js @@ -76,13 +76,13 @@ function showProgress() { window.progressInitTimeout = setTimeout(() => { if (progressMessage && progressMessage.textContent === 'Initializing...') { progressMessage.innerHTML = ` -
Request is being processed for over 10 seconds.
+
Request is being processed..
- The task is queued and will start automatically once current processing is finished. + The task is queued and will start automatically.
`; } - }, 10000); + }, 5000); startProgressPolling(); }