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 22531d2 commit d55c0beCopy full SHA for d55c0be
templates/vue-common/mixins/ListMixin.js
@@ -39,15 +39,6 @@ export default {
39
if (itemsPerPage > 0) {
40
params = { ...params, itemsPerPage, page };
41
}
42
-
43
- let sortDescVuetify = false;
44
- let vueDescending = descending;
45
- if (sortBy.length === 1 && sortDesc.length === 1) {
46
- if (sortDesc[0]) {
47
- sortDescVuetify = true;
48
- }
49
- vueDescending = sortDescVuetify;
50
51
52
if (!isEmpty(sortBy) && !isEmpty(sortDesc)) {
53
params[`order[${sortBy[0]}]`] = sortDesc[0] ? 'desc' : 'asc'
0 commit comments