making dialogs wider to accompany deeper hierarchies. Recent changes now display full path of the note

This commit is contained in:
azivner
2017-10-11 19:41:45 -04:00
parent a363b43c2b
commit 4a4228cd03
5 changed files with 13 additions and 11 deletions

View File

@@ -28,6 +28,10 @@ function getNoteTitle(noteId) {
function getFullName(noteId) {
let note = getNodeByKey(noteId);
if (note === null) {
return "[unknown]";
}
if (note.data.is_clone || (note.data.encryption > 0 && !isEncryptionAvailable())) {
return null;
}