From bce67487c187bc564f5187fb0d34d1e85ab87ca5 Mon Sep 17 00:00:00 2001 From: Joan Sanchez Date: Mon, 4 Feb 2019 15:21:10 +0100 Subject: [PATCH] catalog filter requery fix #1034 --- modules/order/front/filter/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/order/front/filter/index.js b/modules/order/front/filter/index.js index aa3f3cc3d..e4a25eb52 100644 --- a/modules/order/front/filter/index.js +++ b/modules/order/front/filter/index.js @@ -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;