This commit is contained in:
Mateusz Gruszczyński
2026-02-23 13:15:17 +01:00
parent bf02af0192
commit 88a0574e86

View File

@@ -76,13 +76,13 @@ function showProgress() {
window.progressInitTimeout = setTimeout(() => {
if (progressMessage && progressMessage.textContent === 'Initializing...') {
progressMessage.innerHTML = `
<div>Request is being processed for over 10 seconds.</div>
<div>Request is being processed..</div>
<div style="margin-top: 10px; color: #856404; background: #fff3cd; padding: 10px; border-radius: 4px; font-size: 0.9em;">
The task is queued and will start automatically once current processing is finished.
The task is queued and will start automatically.
</div>
`;
}
}, 10000);
}, 5000);
startProgressPolling();
}