From 454310c3e45d6dff409e103643bc0cb821f7074e Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 13 Nov 2025 10:24:57 +0200 Subject: [PATCH] feat(collections/list): enable "Show archived notes" checkmark in collections --- .../client/src/widgets/ribbon/CollectionPropertiesTab.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/apps/client/src/widgets/ribbon/CollectionPropertiesTab.tsx b/apps/client/src/widgets/ribbon/CollectionPropertiesTab.tsx index 9d8113b3c..e961ae1f0 100644 --- a/apps/client/src/widgets/ribbon/CollectionPropertiesTab.tsx +++ b/apps/client/src/widgets/ribbon/CollectionPropertiesTab.tsx @@ -59,13 +59,12 @@ function CollectionTypeSwitcher({ viewType, setViewType }: { viewType: string, s function BookProperties({ viewType, note, properties }: { viewType: ViewTypeOptions, note: FNote, properties: BookProperty[] }) { return ( <> - {properties.map(property => ( + {properties.map(property => (
- {mapPropertyView({ note, property })} + {mapPropertyView({ note, property })}
- ))} + ))} - {viewType !== "list" && viewType !== "grid" && ( - )} ) }