From cfef0725ac74d21cf95623bffed7dd8616350e00 Mon Sep 17 00:00:00 2001 From: Oleh Posyniak <oposyniak@magento.com> Date: Fri, 7 Oct 2016 16:55:34 +0300 Subject: [PATCH] MAGETWO-59282: There is no Scope Selector on Product Grid --- app/code/Magento/Ui/view/base/web/js/grid/data-storage.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/code/Magento/Ui/view/base/web/js/grid/data-storage.js b/app/code/Magento/Ui/view/base/web/js/grid/data-storage.js index f40ac491bd8..dca12f832cd 100644 --- a/app/code/Magento/Ui/view/base/web/js/grid/data-storage.js +++ b/app/code/Magento/Ui/view/base/web/js/grid/data-storage.js @@ -79,8 +79,7 @@ define([ getData: function (params, options) { var cachedRequest = this.getRequest(params); - // TODO: Fix this in MAGETWO-59322 - if (params.filters && params.filters['store_id']) { + if (params && params.filters && params.filters['store_id']) { cachedRequest = false; } -- GitLab