From 539ded16c871c60549991bbcc81546add39e4e99 Mon Sep 17 00:00:00 2001 From: peterpeterparker Date: Mon, 15 Mar 2021 20:54:02 +0100 Subject: [PATCH] fix: notes encoding on display --- studio/src/app/modals/editor/app-notes/app-notes.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/studio/src/app/modals/editor/app-notes/app-notes.tsx b/studio/src/app/modals/editor/app-notes/app-notes.tsx index df2b8412f..61c864126 100644 --- a/studio/src/app/modals/editor/app-notes/app-notes.tsx +++ b/studio/src/app/modals/editor/app-notes/app-notes.tsx @@ -20,7 +20,7 @@ export class AppNotes { if (this.selectedElement) { const element: HTMLElement = this.selectedElement.querySelector('[slot="notes"]'); - this.notes = element ? element.innerHTML : undefined; + this.notes = element ? element.innerText : undefined; } }