Table: stop event propagation for checkbox (#13369)

pull/13382/head
hetech 2018-11-09 19:03:07 +08:00 committed by GitHub
parent fb4ba161a1
commit bf7bb4b6f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -302,7 +302,8 @@ export default {
return classes.join(' ');
},
toggleAllSelection() {
toggleAllSelection(event) {
event.stopPropagation();
this.store.commit('toggleAllSelection');
},