Fix: deselect file tasks select all button on dismiss (#7592)

This commit is contained in:
shamoon 2024-08-31 14:02:37 -07:00 committed by GitHub
parent b8283047ae
commit 3d5e45c20a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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()
} }
} }