Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit 539ded1

Browse files
fix: notes encoding on display
1 parent 76de178 commit 539ded1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

studio/src/app/modals/editor/app-notes/app-notes.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class AppNotes {
2020
if (this.selectedElement) {
2121
const element: HTMLElement = this.selectedElement.querySelector('[slot="notes"]');
2222

23-
this.notes = element ? element.innerHTML : undefined;
23+
this.notes = element ? element.innerText : undefined;
2424
}
2525
}
2626

0 commit comments

Comments
 (0)