Skip to content
Snippets Groups Projects
Commit 3a6260f6 authored by Pedro Beschorner Marin's avatar Pedro Beschorner Marin
Browse files

Remove dangerouslySetInnerHTML from captions

parent 78c64965
No related branches found
No related tags found
No related merge requests found
......@@ -108,13 +108,15 @@ class Captions extends React.Component {
<div
aria-hidden
style={captionStyles}
dangerouslySetInnerHTML={{ __html: this.text }}
/>
>
{this.text}
</div>
<div
style={visuallyHidden}
aria-live={this.text === '' && this.ariaText !== '' ? 'polite' : 'off'}
dangerouslySetInnerHTML={{ __html: this.ariaText }}
/>
>
{this.ariaText}
</div>
</div>
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment