1 parent 52ed585 commit 335321fCopy full SHA for 335321f
1 file changed
frontend/src/pages/OpsPage.tsx
@@ -1381,6 +1381,7 @@ export function OpsPage() {
1381
if (autoRefreshSeconds === 0 || !isPageVisible) return;
1382
const timer = window.setInterval(() => {
1383
if (isRefreshing || isClaimRunning || isActionRunning || isLockRenewing || lockRenewInFlightRef.current) return;
1384
+ if (isDownloadRunning || isBulkRunning) return;
1385
if (Date.now() < autoRefreshPausedUntilMs) return;
1386
void refresh({ source: "auto" }).then((res) => {
1387
if (res.ok) {
@@ -1401,6 +1402,8 @@ export function OpsPage() {
1401
1402
autoRefreshSeconds,
1403
isActionRunning,
1404
isClaimRunning,
1405
+ isBulkRunning,
1406
+ isDownloadRunning,
1407
isLockRenewing,
1408
isPageVisible,
1409
isRefreshing,
0 commit comments