Fix mention links in detailed statuses not opening in the WebUI

th-downstream
Thibaut Girka 6 years ago committed by ThibG
parent 3988b60bc2
commit 467786f29b

@ -29,7 +29,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
};
handleAccountClick = (e) => {
if (e.button === 0) {
if (e.button === 0 && !(e.ctrlKey || e.altKey || e.metaKey)) {
e.preventDefault();
this.context.router.history.push(`/accounts/${this.props.status.getIn(['account', 'id'])}`);
}
@ -37,6 +37,15 @@ export default class DetailedStatus extends ImmutablePureComponent {
e.stopPropagation();
}
parseClick = (e, destination) => {
if (e.button === 0 && !(e.ctrlKey || e.altKey || e.metaKey)) {
e.preventDefault();
this.context.router.history.push(destination);
}
e.stopPropagation();
}
handleOpenVideo = (media, startTime) => {
this.props.onOpenVideo(media, startTime);
}
@ -122,6 +131,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
expanded={expanded}
collapsed={false}
onExpandedToggle={onToggleHidden}
parseClick={this.parseClick}
/>
<div className='detailed-status__meta'>

Loading…
Cancel
Save