fix toggling protected flag and display of the title

This commit is contained in:
zadam
2021-09-08 22:35:32 +02:00
parent 151687cd9b
commit 010f075ac5
4 changed files with 17 additions and 3 deletions

View File

@@ -1084,7 +1084,7 @@ class Note extends AbstractEntity {
}
getPojo() {
const pojo = {
return {
noteId: this.noteId,
title: this.title,
isProtected: this.isProtected,
@@ -1096,6 +1096,10 @@ class Note extends AbstractEntity {
utcDateCreated: this.utcDateCreated,
utcDateModified: this.utcDateModified
};
}
getPojoToSave() {
const pojo = this.getPojo();
if (pojo.isProtected) {
if (this.isDecrypted) {