We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fe7eab commit 3280c7aCopy full SHA for 3280c7a
src/components/table/helpers/mixin-items.js
@@ -81,7 +81,9 @@ export default {
81
return {
82
filter: this.localFilter,
83
sortBy: this.sortMulti ? this.computedSortBy : (this.computedSortBy || [])[0] || '',
84
- sortDesc: this.sortMulti ? this.computedSortDesc : (this.computedSortDesc || [])[0] || false,
+ sortDesc: this.sortMulti
85
+ ? this.computedSortDesc
86
+ : (this.computedSortDesc || [])[0] || false,
87
perPage: parseInt(this.perPage, 10) || 0,
88
currentPage: parseInt(this.currentPage, 10) || 1,
89
apiUrl: this.apiUrl
0 commit comments