]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix: fix auto-dismiss completed tasks on open document (#7869)
authorshamoon <4887959+shamoon@users.noreply.github.com>
Mon, 7 Oct 2024 14:25:52 +0000 (07:25 -0700)
committerGitHub <noreply@github.com>
Mon, 7 Oct 2024 14:25:52 +0000 (07:25 -0700)
src-ui/src/app/services/tasks.service.ts

index ed14c8071ef83fb84179bcf07f767e2271f50eb6..e2c064e03a373fe61296a831c5c020f524db5064 100644 (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()
       })