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 3280c7a commit 9128e6dCopy full SHA for 9128e6d
src/components/table/helpers/mixin-provider.js
@@ -56,7 +56,9 @@ export default {
56
}
57
if (!this.noProviderSorting) {
58
ctx.sortBy = this.sortMulti ? this.computedSortBy : (this.computedSortBy || [])[0] || ''
59
- ctx.sortDesc = this.sortMulti ? this.computedSortDesc : (this.computedSortDesc || [])[0] || false
+ ctx.sortDesc = this.sortMulti
60
+ ? this.computedSortDesc
61
+ : (this.computedSortDesc || [])[0] || false
62
63
if (!this.noProviderPaging) {
64
ctx.perPage = this.perPage
0 commit comments