fixes select all in single selection mode on Ctrl-A press
parent
88d0c52e5f
commit
15738ffce9
|
@ -864,7 +864,7 @@ export default {
|
|||
break;
|
||||
|
||||
default:
|
||||
if (event.code === 'KeyA' && metaKey) {
|
||||
if (event.code === 'KeyA' && metaKey && this.isMultipleSelectionMode()) {
|
||||
const data = this.dataToRender(slotProps.rows);
|
||||
|
||||
this.$emit('update:selection', data);
|
||||
|
|
Loading…
Reference in New Issue