Skip to content

Commit

Permalink
Fix select all function fixes #46
Browse files Browse the repository at this point in the history
  • Loading branch information
tochoromero committed Dec 30, 2020
1 parent db75bad commit 2e06d84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"grid",
"datagrid"
],
"version": "0.0.6",
"version": "0.0.7",
"private": false,
"main": "src/main.js",
"author": "Hector Romero Granillo",
Expand Down
2 changes: 1 addition & 1 deletion src/VTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export default {
selectAll () {
if (this.selectionMode === 'single') return
this.store.selectAll(this.data)
this.store.selectAll([...this.data])
},
deselectAll () {
this.store.deselectAll()
Expand Down

0 comments on commit 2e06d84

Please sign in to comment.