Fix media modal link button (#18877)

Fixes regression from #18697
pull/18894/head
Claire 3 years ago committed by GitHub
parent 19f2f35b33
commit ba745ca99a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -131,17 +131,9 @@ export default class IconButton extends React.PureComponent {
</React.Fragment> </React.Fragment>
); );
if (href) { if (href && !this.prop) {
return ( contents = (
<a <a href={href} target='_blank' rel='noopener noreferrer'>
href={href}
aria-label={title}
title={title}
target='_blank'
rel='noopener noreferrer'
className={classes}
style={style}
>
{contents} {contents}
</a> </a>
); );

Loading…
Cancel
Save