diff options
-rw-r--r-- | src/client/views/collections/CollectionCardDeckView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionCardDeckView.tsx b/src/client/views/collections/CollectionCardDeckView.tsx index 3dfb280f4..8fea3dbd6 100644 --- a/src/client/views/collections/CollectionCardDeckView.tsx +++ b/src/client/views/collections/CollectionCardDeckView.tsx @@ -129,7 +129,7 @@ export class CollectionCardView extends CollectionSubView() { * custom group */ @computed get childDocsWithoutLinks() { - return (this.childDocList as Doc[]).filter(l => l.type !== DocumentType.LINK); + return this.childDocs.filter(l => l.type !== DocumentType.LINK); } /** |