diff --git a/app/assets/javascripts/views/notes/notes_view.ts b/app/assets/javascripts/views/notes/notes_view.ts index e59300f28..6ed9e41c1 100644 --- a/app/assets/javascripts/views/notes/notes_view.ts +++ b/app/assets/javascripts/views/notes/notes_view.ts @@ -216,7 +216,7 @@ class NotesViewCtrl extends PureViewCtrl { break; case ApplicationEvent.CompletedFullSync: this.getMostValidNotes().then((notes) => { - if (notes.length === 0 && this.selectedTag?.isAllTag) { + if (notes.length === 0 && this.selectedTag?.isAllTag && this.state.noteFilter.text === '') { this.createPlaceholderNote(); } });