Skip to content

Commit

Permalink
feat(app): don't show hits in collection info
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardMoyse committed Apr 14, 2021
1 parent 57e438f commit c550a41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
);
}

Expand Down

0 comments on commit c550a41

Please sign in to comment.