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); } }); }