fix: show trashed notes that are also archived
This commit is contained in:
@@ -335,7 +335,7 @@ class NotesViewCtrl extends PureViewCtrl<{}, NotesState> {
|
|||||||
(note: SNNote) => {
|
(note: SNNote) => {
|
||||||
return notePassesFilter(
|
return notePassesFilter(
|
||||||
note,
|
note,
|
||||||
this.getState().showArchived! || tag?.isArchiveTag,
|
this.getState().showArchived! || tag?.isArchiveTag || tag?.isTrashTag,
|
||||||
this.getState().hidePinned!,
|
this.getState().hidePinned!,
|
||||||
this.getState().noteFilter.text.toLowerCase()
|
this.getState().noteFilter.text.toLowerCase()
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user