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 2f2496b commit 9f5cedaCopy full SHA for 9f5ceda
src/components/table/helpers/mixin-provider.js
@@ -55,8 +55,8 @@ export default {
55
ctx.filter = this.localFilter
56
}
57
if (!this.noProviderSorting) {
58
- ctx.sortBy = this.localSortBy
59
- ctx.sortDesc = this.localSortDesc
+ ctx.sortBy = this.sortMulti ? this.computedSortBy : (this.computedSortBy || [])[0] || ''
+ ctx.sortDesc = this.sortMulti ? this.computedSortDesc : (this.computedSortDesc || [])[0] || false
60
61
if (!this.noProviderPaging) {
62
ctx.perPage = this.perPage
0 commit comments