Skip to content

Commit fe4f7db

Browse files
committed
fix #6 Sorting error
1 parent d67dab9 commit fe4f7db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/DataTables.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export default {
191191
return this.colNotRowClick.concat(['innerRowActions'])
192192
},
193193
tableData() {
194-
let newData = this.data
194+
let newData = this.data.slice()
195195
196196
let doFilter = function(defaultFilterFunction, filter, value) {
197197
let filterFunction = filter.filterFunction || defaultFilterFunction

0 commit comments

Comments
 (0)