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

@@ -156,7 +156,7 @@ class NoteRevision extends AbstractEntity {
}
getPojo() {
const pojo = {
return {
noteRevisionId: this.noteRevisionId,
noteId: this.noteId,
type: this.type,
@@ -169,6 +169,10 @@ class NoteRevision extends AbstractEntity {
utcDateCreated: this.utcDateCreated,
utcDateModified: this.utcDateModified
};
}
getPojoToSave() {
const pojo = this.getPojo();
if (pojo.isProtected) {
if (protectedSessionService.isProtectedSessionAvailable()) {