fix runOnNoteContentChange event

This commit is contained in:
zadam
2023-05-05 15:42:53 +02:00
parent 35338e9ec6
commit 9cdcbb3125
2 changed files with 3 additions and 6 deletions

View File

@@ -229,10 +229,6 @@ function createNewNote(params) {
entity: note
});
eventService.emit(eventService.NOTE_CONTENT_CHANGE, {
entity: note
});
eventService.emit(eventService.ENTITY_CREATED, {
entityName: 'branches',
entity: branch
@@ -570,8 +566,6 @@ function downloadImages(noteId, content) {
asyncPostProcessContent(origNote, updatedContent);
eventService.emit(eventService.NOTE_CONTENT_CHANGE, { entity: origNote });
console.log(`Fixed the image links for note '${noteId}' to the offline saved.`);
}
});