mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-09 08:15:27 +01:00
Allow range selection with shift
This commit is contained in:
parent
7cc3c73994
commit
e6961d5287
2 changed files with 23 additions and 10 deletions
|
|
@ -160,8 +160,8 @@ export class DocumentListComponent implements OnInit {
|
|||
this.filterRulesModified = modified
|
||||
}
|
||||
|
||||
toggleSelected(document: PaperlessDocument, event: Event): void {
|
||||
this.list.toggleSelected(document)
|
||||
toggleSelected(document: PaperlessDocument, event: MouseEvent): void {
|
||||
this.list.toggleSelected(document, event.shiftKey)
|
||||
}
|
||||
|
||||
clickTag(tagID: number) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue