diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-08-25 04:30:53 +0200 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-08-25 05:14:00 +0200 |
commit | 3c80b62045b59f197ea5003357c03b16c1b1bac7 (patch) | |
tree | d76c8b6f0557a205c7abc25c3d86a997861530b3 /app/javascript/flavours | |
parent | 68564a622ca812f7ce512aaa02d8dccfb9c70a1e (diff) |
[Glitch] Fix media modal link button
Port ba745ca99a4ce4b953e11776827aabb68d621e79 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours')
-rw-r--r-- | app/javascript/flavours/glitch/components/icon_button.js | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/app/javascript/flavours/glitch/components/icon_button.js b/app/javascript/flavours/glitch/components/icon_button.js index be2468d68..9ff745355 100644 --- a/app/javascript/flavours/glitch/components/icon_button.js +++ b/app/javascript/flavours/glitch/components/icon_button.js @@ -139,17 +139,9 @@ export default class IconButton extends React.PureComponent { </React.Fragment> ); - if (href) { - return ( - <a - href={href} - aria-label={title} - title={title} - target='_blank' - rel='noopener noreferrer' - className={classes} - style={style} - > + if (href && !this.prop) { + contents = ( + <a href={href} target='_blank' rel='noopener noreferrer'> {contents} </a> ); |