From 8f812ed6d673046638edd768fb6c188fffc37b67 Mon Sep 17 00:00:00 2001 From: bobzel Date: Sun, 19 May 2024 02:07:33 -0400 Subject: fix for textToDoc in card deck --- src/client/views/collections/CollectionCardDeckView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/client/views/collections/CollectionCardDeckView.tsx b/src/client/views/collections/CollectionCardDeckView.tsx index 34800040c..6036a2ead 100644 --- a/src/client/views/collections/CollectionCardDeckView.tsx +++ b/src/client/views/collections/CollectionCardDeckView.tsx @@ -355,7 +355,7 @@ export class CollectionCardView extends CollectionSubView() { }; const docTextPromises = this.childDocsWithoutLinks.map(async doc => { const docText = (await docToText(doc)) ?? ''; - this._textToDoc.set(docText.trim(), doc); + this._textToDoc.set(docText.replace(/\n/g, ' ').trim(), doc); return `======${docText.replace(/\n/g, ' ').trim()}======`; }); return Promise.all(docTextPromises); -- cgit v1.2.3-70-g09d2