feat(collections/list): enable "Show archived notes" checkmark in collections

This commit is contained in:
Elian Doran 2025-11-13 10:24:57 +02:00
parent e51daad5da
commit 454310c3e4
No known key found for this signature in database

View File

@ -65,7 +65,6 @@ function BookProperties({ viewType, note, properties }: { viewType: ViewTypeOpti
</div>
))}
{viewType !== "list" && viewType !== "grid" && (
<CheckboxPropertyView
note={note} property={{
bindToLabel: "includeArchived",
@ -73,7 +72,6 @@ function BookProperties({ viewType, note, properties }: { viewType: ViewTypeOpti
type: "checkbox"
}}
/>
)}
</>
)
}