mirror of
https://github.com/zadam/trilium.git
synced 2025-10-28 00:36:33 +01:00
fix setting "protected" class and background on note tree
This commit is contained in:
@@ -79,18 +79,11 @@ const noteEditor = (function() {
|
||||
}
|
||||
|
||||
function setNoteBackgroundIfProtected(note) {
|
||||
if (note.detail.is_protected) {
|
||||
$("#note-detail-wrapper").addClass("protected");
|
||||
protectButton.hide();
|
||||
unprotectButton.show();
|
||||
}
|
||||
else {
|
||||
$("#note-detail-wrapper").removeClass("protected");
|
||||
protectButton.show();
|
||||
unprotectButton.hide();
|
||||
}
|
||||
const isProtected = !!note.detail.is_protected;
|
||||
|
||||
noteTree.setCurrentNoteTreeBasedOnProtectedStatus();
|
||||
noteDetailWrapperEl.toggleClass("protected", isProtected);
|
||||
protectButton.toggle(!isProtected);
|
||||
unprotectButton.toggle(isProtected);
|
||||
}
|
||||
|
||||
let isNewNoteCreated = false;
|
||||
@@ -129,6 +122,7 @@ const noteEditor = (function() {
|
||||
noteChangeDisabled = false;
|
||||
|
||||
setNoteBackgroundIfProtected(currentNote);
|
||||
noteTree.setNoteTreeBackgroundBasedOnProtectedStatus(noteId);
|
||||
|
||||
showAppIfHidden();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user