catalog filter requery fix #1034

This commit is contained in:
Joan Sanchez 2019-02-04 15:21:10 +01:00
parent de654f270f
commit bce67487c1
1 changed files with 2 additions and 2 deletions

View File

@ -27,9 +27,9 @@ class Controller {
}
set order(value) {
this._order = value;
if (!value.id || this._order) return;
if (!value.id) return;
this._order = value;
this.$scope.$$postDigest(() => {
let category;