Skip to content

Commit 2e06d84

Browse files
committed
Fix select all function fixes #46
1 parent db75bad commit 2e06d84

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"grid",
77
"datagrid"
88
],
9-
"version": "0.0.6",
9+
"version": "0.0.7",
1010
"private": false,
1111
"main": "src/main.js",
1212
"author": "Hector Romero Granillo",

src/VTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export default {
213213
selectAll () {
214214
if (this.selectionMode === 'single') return
215215
216-
this.store.selectAll(this.data)
216+
this.store.selectAll([...this.data])
217217
},
218218
deselectAll () {
219219
this.store.deselectAll()

0 commit comments

Comments
 (0)