Fix: deselect file tasks select all button on dismiss

This commit is contained in:
shamoon 2024-08-31 13:30:14 -07:00
parent b8283047ae
commit 7788b2a632

View File

@ -70,11 +70,11 @@ export class TasksComponent
modal.componentInstance.buttonsEnabled = false modal.componentInstance.buttonsEnabled = false
modal.close() modal.close()
this.tasksService.dismissTasks(tasks) this.tasksService.dismissTasks(tasks)
this.selectedTasks.clear() this.clearSelection()
}) })
} else { } else {
this.tasksService.dismissTasks(tasks) this.tasksService.dismissTasks(tasks)
this.selectedTasks.clear() this.clearSelection()
} }
} }