link map will try to display max possible number of links

This commit is contained in:
zadam
2019-09-07 22:36:08 +02:00
parent 2cfe9b3c03
commit 521a9b0b2c
2 changed files with 12 additions and 10 deletions

View File

@@ -102,7 +102,7 @@ async function createNewNote(parentNoteId, noteData) {
mime: noteData.mime || 'text/html'
}).save();
if (note.isStringNote()) {
if (note.isStringNote() || this.type === 'render') { // render to just make sure it's not null
noteData.content = noteData.content || "";
}