From 3d5e45c20a1f0ad216bcce0fd986f490d109f078 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 31 Aug 2024 14:02:37 -0700 Subject: [PATCH] Fix: deselect file tasks select all button on dismiss (#7592) --- src-ui/src/app/components/admin/tasks/tasks.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/components/admin/tasks/tasks.component.ts b/src-ui/src/app/components/admin/tasks/tasks.component.ts index f1fa56d56..7b01090d5 100644 --- a/src-ui/src/app/components/admin/tasks/tasks.component.ts +++ b/src-ui/src/app/components/admin/tasks/tasks.component.ts @@ -70,11 +70,11 @@ export class TasksComponent modal.componentInstance.buttonsEnabled = false modal.close() this.tasksService.dismissTasks(tasks) - this.selectedTasks.clear() + this.clearSelection() }) } else { this.tasksService.dismissTasks(tasks) - this.selectedTasks.clear() + this.clearSelection() } }