From c830bc6e8abe637bbf0453a2a24f68794e00227a Mon Sep 17 00:00:00 2001 From: Joan Sanchez Date: Thu, 9 Jan 2020 09:23:59 +0100 Subject: [PATCH] fixed order by tag --- modules/order/front/catalog/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/order/front/catalog/index.js b/modules/order/front/catalog/index.js index adb66171ed..5e2e965557 100644 --- a/modules/order/front/catalog/index.js +++ b/modules/order/front/catalog/index.js @@ -97,7 +97,7 @@ class Controller { return { field: this.orderField, way: this.orderWay, - isTag: !!(this.orderSelection && this.orderSelection.isTag) + isTag: (this.orderSelection && this.orderSelection.isTag) }; }