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

Commit bfa8d97

Browse files
Merge pull request #1107 from deckgo/notes-encoding
fix: notes encoding on display
2 parents 76de178 + 539ded1 commit bfa8d97

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)