IE changes

This commit is contained in:
rahul shukla 2019-05-07 21:09:27 +05:30
parent e2120ea276
commit 6f494cc04b
1 changed files with 5 additions and 3 deletions

View File

@ -97,9 +97,11 @@
//this.appliedFilters[pair[0]] = pair[1].split(',');
//}
urlParams.forEach((v, i) =>
this.appliedFilters[i] = v.split(',')
);
var this_this = this;
urlParams.forEach(function (value, index) {
this_this.appliedFilters[index] = value.split(',');
});
},
methods: {