fixes select all in single selection mode on Ctrl-A press

This commit is contained in:
navedqb 2024-02-14 11:13:59 +05:30 committed by GitHub
parent 88d0c52e5f
commit 15738ffce9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);