diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html
index e689bfcbd..ca27fb697 100644
--- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html
+++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html
@@ -1,5 +1,5 @@
-
+
![]()
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts
index 4725add10..02eb5e0eb 100644
--- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts
+++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts
@@ -32,9 +32,6 @@ export class DocumentCardSmallComponent implements OnInit {
moreTags: number = null
- @Output()
- showPreview = new EventEmitter
()
-
@ViewChild('popover') popover: NgbPopover
mouseOnPreview = false
@@ -91,7 +88,6 @@ export class DocumentCardSmallComponent implements OnInit {
if (this.mouseOnPreview) {
// show popover
this.popoverHidden = false
- this.showPreview.emit(this)
} else {
this.popover.close()
}
@@ -102,4 +98,8 @@ export class DocumentCardSmallComponent implements OnInit {
mouseLeavePreview() {
this.mouseOnPreview = false
}
+
+ mouseLeaveCard() {
+ this.popover.close()
+ }
}
diff --git a/src-ui/src/app/components/document-list/document-list.component.html b/src-ui/src/app/components/document-list/document-list.component.html
index 630395b69..cf954bde8 100644
--- a/src-ui/src/app/components/document-list/document-list.component.html
+++ b/src-ui/src/app/components/document-list/document-list.component.html
@@ -170,5 +170,5 @@
diff --git a/src-ui/src/app/components/document-list/document-list.component.ts b/src-ui/src/app/components/document-list/document-list.component.ts
index e1c2457e6..0d1562c24 100644
--- a/src-ui/src/app/components/document-list/document-list.component.ts
+++ b/src-ui/src/app/components/document-list/document-list.component.ts
@@ -12,7 +12,6 @@ import { SavedViewService } from 'src/app/services/rest/saved-view.service';
import { Toast, ToastService } from 'src/app/services/toast.service';
import { FilterEditorComponent } from './filter-editor/filter-editor.component';
import { SaveViewConfigDialogComponent } from './save-view-config-dialog/save-view-config-dialog.component';
-import { DocumentCardSmallComponent } from './document-card-small/document-card-small.component';
@Component({
selector: 'app-document-list',
@@ -42,8 +41,6 @@ export class DocumentListComponent implements OnInit, OnDestroy {
private consumptionFinishedSubscription: Subscription
- @ViewChildren(DocumentCardSmallComponent) smallCards: QueryList
-
get isFiltered() {
return this.list.filterRules?.length > 0
}
@@ -207,10 +204,4 @@ export class DocumentListComponent implements OnInit, OnDestroy {
trackByDocumentId(index, item: PaperlessDocument) {
return item.id
}
-
- closeAllPopovers(cardOpening: DocumentCardSmallComponent) {
- this.smallCards.forEach(card => {
- if (card !== cardOpening) card.popover.close()
- })
- }
}