summaryrefslogtreecommitdiffhomepage
path: root/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'frontend')
-rw-r--r--frontend/src/modules/task/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/modules/task/index.ts b/frontend/src/modules/task/index.ts
index ab3ddb8c3..7e09a0804 100644
--- a/frontend/src/modules/task/index.ts
+++ b/frontend/src/modules/task/index.ts
@@ -126,7 +126,7 @@ class TaskDispatcher {
} else {
showNotification(notification.progress.pending(item.id, item.header));
this.progress[item.id] = item;
- this.updateProgress(items);
+ setTimeout(() => this.updateProgress(items), 1000);
}
});
}