fix note title escaping in export dialog

This commit is contained in:
zadam 2022-07-10 22:32:00 +02:00
parent ea3bce25d9
commit 1dfc37704f

View File

@ -213,10 +213,7 @@ export default class ExportDialog extends BasicWidget {
const {noteId, parentNoteId} = treeService.getNoteIdAndParentIdFromNotePath(notePath);
this.branchId = await froca.getBranchId(parentNoteId, noteId);
const noteTitle = await treeService.getNoteTitle(noteId);
this.$noteTitle.html(noteTitle);
this.$noteTitle.text(await treeService.getNoteTitle(noteId));
}
exportBranch(branchId, type, format, version) {