[Glitch] Do not override ctrl/cmd+click in media gallery
This commit is contained in:
parent
40d04a3209
commit
8183d2ed55
|
@ -70,7 +70,7 @@ class Item extends React.PureComponent {
|
||||||
handleClick = (e) => {
|
handleClick = (e) => {
|
||||||
const { index, onClick } = this.props;
|
const { index, onClick } = this.props;
|
||||||
|
|
||||||
if (e.button === 0) {
|
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
onClick(index);
|
onClick(index);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue