[Glitch] Fix preview card player getting embedded when clicking on the external link button
Port f24c62a5c8
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
pull/2656/head
parent
5b97fdf84c
commit
bbfcd71118
|
@ -82,6 +82,10 @@ export default class Card extends PureComponent {
|
||||||
this.setState({ embedded: true });
|
this.setState({ embedded: true });
|
||||||
};
|
};
|
||||||
|
|
||||||
|
handleExternalLinkClick = (e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
};
|
||||||
|
|
||||||
setRef = c => {
|
setRef = c => {
|
||||||
this.node = c;
|
this.node = c;
|
||||||
};
|
};
|
||||||
|
@ -191,7 +195,7 @@ export default class Card extends PureComponent {
|
||||||
<div className='status-card__actions' onClick={this.handleEmbedClick} role='none'>
|
<div className='status-card__actions' onClick={this.handleEmbedClick} role='none'>
|
||||||
<div>
|
<div>
|
||||||
<button type='button' onClick={this.handleEmbedClick}><Icon id='play' icon={PlayArrowIcon} /></button>
|
<button type='button' onClick={this.handleEmbedClick}><Icon id='play' icon={PlayArrowIcon} /></button>
|
||||||
<a href={card.get('url')} target='_blank' rel='noopener noreferrer'><Icon id='external-link' icon={OpenInNewIcon} /></a>
|
<a href={card.get('url')} onClick={this.handleExternalLinkClick} target='_blank' rel='noopener noreferrer'><Icon id='external-link' icon={OpenInNewIcon} /></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
) : spoilerButton}
|
) : spoilerButton}
|
||||||
|
|
Loading…
Reference in New Issue