Fix: fix auto-dismiss completed tasks on open document (#7869)

This commit is contained in:
shamoon 2024-10-07 07:25:52 -07:00 committed by GitHub
parent 95d1abd416
commit facec317ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -67,7 +67,7 @@ export class TasksService {
.post(`${this.baseUrl}acknowledge_tasks/`, {
tasks: [...task_ids],
})
.pipe(takeUntil(this.unsubscribeNotifer), first())
.pipe(first())
.subscribe((r) => {
this.reload()
})