aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections
diff options
context:
space:
mode:
authoraidahosa1 <aisosa_idahosa@brown.edu>2024-08-22 03:03:03 -0400
committeraidahosa1 <aisosa_idahosa@brown.edu>2024-08-22 03:03:03 -0400
commit3ab5b620e462a35d0dc23f67014fc5aa9ef4803c (patch)
treee0e7bdd82778e64c625f080b3ebcee958d44b738 /src/client/views/collections
parenta882dc6899a6b11e2e972f3e2a2ae991caeea094 (diff)
liberty
Diffstat (limited to 'src/client/views/collections')
-rw-r--r--src/client/views/collections/CollectionCardDeckView.tsx9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionCardDeckView.tsx b/src/client/views/collections/CollectionCardDeckView.tsx
index 736cc2354..52f01e239 100644
--- a/src/client/views/collections/CollectionCardDeckView.tsx
+++ b/src/client/views/collections/CollectionCardDeckView.tsx
@@ -95,7 +95,14 @@ export class CollectionCardView extends CollectionSubView() {
};
componentDidMount(): void {
+
this.Document.childFilters_boolean = 'OR'
+ this.childDocsWithoutLinks.forEach(c => {
+ c[DocData].showIconTags = true
+
+ });
+
+
this._disposers.sort = reaction(
() => ({ cardSort: this.cardSort }),
({ cardSort}) => (cardSort === cardSortings.Chat ? this.openChatPopup() : GPTPopup.Instance.setVisible(false))
@@ -672,7 +679,7 @@ export class CollectionCardView extends CollectionSubView() {
}}
onMouseEnter={() => this.setHoveredNodeIndex(index)}>
{this.displayDoc(doc, childScreenToLocal)}
- {this.renderButtons(doc, this.cardSort)}
+ {/* {this.renderButtons(doc, this.cardSort)} */}
</div>
);
});