diff --git a/pkg/api/flamenco-openapi.yaml b/pkg/api/flamenco-openapi.yaml index eb288de7..f911d4af 100644 --- a/pkg/api/flamenco-openapi.yaml +++ b/pkg/api/flamenco-openapi.yaml @@ -782,7 +782,7 @@ components: - archived - archiving - cancel-requested - - requeued + - requeueing - under-construction TaskStatus: diff --git a/web/app/src/components/TaskActionsBar.vue b/web/app/src/components/TaskActionsBar.vue index b9ea9994..0d7b8888 100644 --- a/web/app/src/components/TaskActionsBar.vue +++ b/web/app/src/components/TaskActionsBar.vue @@ -32,13 +32,12 @@ export default { const numTasks = 1; return promise .then(() => { - let message; - if (numTasks == 1) { - message = `Task ${description}`; - } else { - message = `${numTasks} tasks ${description}`; - } - this.notifs.add(message); + // There used to be a call to `this.notifs.add(message)` here, but now + // that task status changes are logged in the notifications anyway, + // it's no longer necessary. + // This function is still kept, in case we want to bring back the + // notifications when multiple tasks can be selected. Then a summary + // ("N tasks requeued") could be logged here. }) .catch((error) => { const errorMsg = JSON.stringify(error); // TODO: handle API errors better.