Merge branch 'release/3.6.2' into develop

This commit is contained in:
Baptiste Grob
2021-03-11 11:21:40 +01:00
2 changed files with 5 additions and 1 deletions

View File

@@ -707,6 +707,8 @@ class NotesViewCtrl extends PureViewCtrl<unknown, NotesState> {
this.searchBarInput?.[0].focus();
if (this.state.noteFilter.includeProtectedNoteText) {
this.state.noteFilter.includeProtectedNoteText = false;
this.reloadNotesDisplayOptions();
await this.reloadNotes();
} else {
this.setState({
authorizingSearchOptions: true,
@@ -714,6 +716,8 @@ class NotesViewCtrl extends PureViewCtrl<unknown, NotesState> {
event.preventDefault();
if (await this.application.authorizeSearchingProtectedNotesText()) {
this.state.noteFilter.includeProtectedNoteText = true;
this.reloadNotesDisplayOptions();
await this.reloadNotes();
}
await this.$timeout(50);
await this.setState({

View File

@@ -1,6 +1,6 @@
{
"name": "standard-notes-web",
"version": "3.6.1",
"version": "3.6.2",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",