1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Desktop: Accessibility: Fix incorrect note viewer accessibility label (#11744)

This commit is contained in:
Henry Heino
2025-01-30 06:58:53 -08:00
committed by GitHub
parent 25aab57af5
commit 4e677d2baf

View File

@@ -225,7 +225,7 @@ const NoteTextViewer = forwardRef((props: Props, ref: ForwardedRef<NoteViewerCon
style={viewerStyle}
allow='clipboard-write=(self) fullscreen=(self) autoplay=(self) local-fonts=(self) encrypted-media=(self)'
allowFullScreen={true}
aria-label={_('Note editor')}
aria-label={_('Note viewer')}
src={`joplin-content://note-viewer/${__dirname}/note-viewer/index.html`}
></iframe>
);