From c550a41860c97a223527ecc2da4e66fb644a0844 Mon Sep 17 00:00:00 2001 From: Edward Moyse Date: Wed, 14 Apr 2021 14:33:06 +0200 Subject: [PATCH] feat(app): don't show hits in collection info --- .../collections-info-overlay.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/phoenix-ng/projects/phoenix-ui-components/src/components/ui-menu/collections-info/collections-info-overlay/collections-info-overlay.component.ts b/packages/phoenix-ng/projects/phoenix-ui-components/src/components/ui-menu/collections-info/collections-info-overlay/collections-info-overlay.component.ts index 33eef329c..7759ef85f 100644 --- a/packages/phoenix-ng/projects/phoenix-ui-components/src/components/ui-menu/collections-info/collections-info-overlay/collections-info-overlay.component.ts +++ b/packages/phoenix-ng/projects/phoenix-ui-components/src/components/ui-menu/collections-info/collections-info-overlay/collections-info-overlay.component.ts @@ -39,7 +39,7 @@ export class CollectionsInfoOverlayComponent implements OnInit { .getCollection(value) .map(PrettySymbols.getPrettyParams); this.collectionColumns = Object.keys(this.showingCollection[0]).filter( - (column) => column !== 'uuid' + (column) => column !== 'uuid' && column !== 'hits' // FIXME - this is an ugly hack. But currently hits from tracks make track collections unusable. Better to have exlusion list passed in. ); }