remove log statement

This commit is contained in:
Michael Shamoon 2021-01-15 01:11:06 -08:00
parent 4b42c97d0a
commit 6d786f8987

View File

@ -258,7 +258,6 @@ export class DocumentListViewService {
if (includeRange && this.lastSelectedDocumentIndex !== null) {
const toIndex = this.documentIndexInCurrentView(d.id)
console.log('select from', this.lastSelectedDocumentIndex, 'to', toIndex);
this.documents.slice(Math.min(this.lastSelectedDocumentIndex, toIndex), Math.max(this.lastSelectedDocumentIndex, toIndex)).forEach(d => {
this.selected.add(d.id)
})