Merge pull request #28 from navedqb/fix-keyA-select-all-in-single-mode

fix: fix select all in single selection mode on Ctrl-A press
pull/5272/head
navedqb 2024-02-14 11:15:04 +05:30 committed by GitHub
commit e58a0e0c6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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