issue-25 #27

Merged
sebastian merged 32 commits from issue-25 into issue-18 2023-10-28 19:33:06 +02:00
Showing only changes of commit e1ea8684b2 - Show all commits

View File

@ -41,6 +41,7 @@ export class TaskOverviewComponent {
this.taskService.tasksTaskIDFinishPost(task.taskID).subscribe({ this.taskService.tasksTaskIDFinishPost(task.taskID).subscribe({
next: resp => { next: resp => {
this.finishedEmitter.emit(task); this.finishedEmitter.emit(task);
this.tasks = this.tasks.filter(ct => ct.taskID !== task.taskID)
}, },
error: err => { error: err => {
if(err.status == 403) { if(err.status == 403) {