Hide filter / bulk editor for better switching

This commit is contained in:
Michael Shamoon
2020-12-19 22:14:52 -08:00
parent ee4e026ba2
commit 39b35c090b
3 changed files with 8 additions and 5 deletions

View File

@@ -119,14 +119,17 @@ export class DocumentListComponent implements OnInit {
}
clickTag(tagID: number) {
this.list.selectNone()
this.filterEditor.toggleTag(tagID)
}
clickCorrespondent(correspondentID: number) {
this.list.selectNone()
this.filterEditor.toggleCorrespondent(correspondentID)
}
clickDocumentType(documentTypeID: number) {
this.list.selectNone()
this.filterEditor.toggleDocumentType(documentTypeID)
}