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

pull/5272/head^2
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
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);