remove new line =/

This commit is contained in:
Michael Shamoon 2021-01-15 02:22:10 -08:00
parent 01cd4c7546
commit 59008ea765

View File

@ -269,7 +269,6 @@ export class DocumentListViewService {
if (this.lastRangeSelectionToIndex !== null &&
((this.lastRangeSelectionToIndex > this.rangeSelectionAnchorIndex && documentToIndex <= this.rangeSelectionAnchorIndex) ||
(this.lastRangeSelectionToIndex < this.rangeSelectionAnchorIndex && documentToIndex >= this.rangeSelectionAnchorIndex))) {
// new click is "opposite side" of anchor so we invert the old selection
this.documents.slice(Math.min(this.rangeSelectionAnchorIndex, this.lastRangeSelectionToIndex), Math.max(this.rangeSelectionAnchorIndex, this.lastRangeSelectionToIndex) + 1).forEach(d => {
this.selected.delete(d.id)