Remove unused param

pull/310/head
cagataycivici 2020-04-18 17:45:13 +03:00
parent af0bf6f0d0
commit 22e33d6b42
1 changed files with 2 additions and 2 deletions

View File

@ -566,9 +566,9 @@ export default {
return (this.d_multiSortMeta[index].order * result);
},
addMultiSortField(field, metaKey) {
addMultiSortField(field) {
let index = this.d_multiSortMeta.findIndex(meta => meta.field === field);
if (index >= 0) {
if (this.removableSort && (this.d_multiSortMeta[index].order * -1 === this.defaultSortOrder))
this.d_multiSortMeta.splice(index, 1);