This includes clicks on hashtags, mentions, display names and media in the timeline; and usernames in reply-indicator, detailed status, and the boost modal.
This commit is contained in:
committed by
Eugen Rochko
parent
85bb32c410
commit
298ee84488
@ -50,7 +50,7 @@ class Item extends React.PureComponent {
|
||||
handleClick = (e) => {
|
||||
const { index, onClick } = this.props;
|
||||
|
||||
if (e.button === 0) {
|
||||
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
|
||||
e.preventDefault();
|
||||
onClick(index);
|
||||
}
|
||||
|
Reference in New Issue
Block a user