Merge pull request #7147 from mrheinen/master
DataTable : Allow ctrl-c during selection mode (port from Vue 3 PR)pull/7160/head
commit
baf52b0066
|
@ -919,7 +919,8 @@ export default {
|
||||||
this.$emit('update:selection', data);
|
this.$emit('update:selection', data);
|
||||||
}
|
}
|
||||||
|
|
||||||
event.preventDefault();
|
const isCopyShortcut = event.code === 'KeyC' && metaKey;
|
||||||
|
if (!isCopyShortcut) event.preventDefault();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue