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; } }