From 6d786f89878f3d683778d71ce1a2e3582273f0b0 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Fri, 15 Jan 2021 01:11:06 -0800 Subject: [PATCH] remove log statement --- src-ui/src/app/services/document-list-view.service.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src-ui/src/app/services/document-list-view.service.ts b/src-ui/src/app/services/document-list-view.service.ts index 407c81572..13c362918 100644 --- a/src-ui/src/app/services/document-list-view.service.ts +++ b/src-ui/src/app/services/document-list-view.service.ts @@ -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) })