From 71bdb9a3c2ff4895606b6f410345159195754b52 Mon Sep 17 00:00:00 2001 From: Thomas <108925083+tamnt2708@users.noreply.github.com> Date: Thu, 30 Nov 2023 09:41:07 +0700 Subject: [PATCH 1/3] Fix error of wrong content when using filter --- view/adminhtml/web/js/grid/columns/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/adminhtml/web/js/grid/columns/actions.js b/view/adminhtml/web/js/grid/columns/actions.js index 730dbe1..bb6e4e7 100644 --- a/view/adminhtml/web/js/grid/columns/actions.js +++ b/view/adminhtml/web/js/grid/columns/actions.js @@ -42,7 +42,7 @@ define([ return this._super(); } - if (typeof this.modal[action.rowIndex] === 'undefined') { + if (typeof this.modal[action.rowIndex] === 'undefined' || typeof this.modal[action.rowIndex]==='object') { var row = this.rows[action.rowIndex], modalHtml = ''; From db411cc19e4b2cf604418febcedd66ec3c64d56c Mon Sep 17 00:00:00 2001 From: Thomas <108925083+tamnt2708@users.noreply.github.com> Date: Mon, 4 Dec 2023 11:20:43 +0700 Subject: [PATCH 2/3] Fix error of wrong content when using filter --- view/adminhtml/web/js/grid/columns/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/adminhtml/web/js/grid/columns/actions.js b/view/adminhtml/web/js/grid/columns/actions.js index bb6e4e7..7a96403 100644 --- a/view/adminhtml/web/js/grid/columns/actions.js +++ b/view/adminhtml/web/js/grid/columns/actions.js @@ -42,7 +42,7 @@ define([ return this._super(); } - if (typeof this.modal[action.rowIndex] === 'undefined' || typeof this.modal[action.rowIndex]==='object') { + if (typeof this.modal[action.rowIndex] === 'undefined' || typeof this.modal[action.rowIndex] === 'object') { var row = this.rows[action.rowIndex], modalHtml = ''; From b4ad257175c2533628bd9a8f478ad2e6c89f2e46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Huy=20Ph=C3=BAc?= Date: Wed, 20 Dec 2023 14:09:46 +0700 Subject: [PATCH 3/3] Release: v4.7.10 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 6fc9b92..ba76d5f 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "mageplaza/module-core": "^1.5.5" }, "type": "magento2-module", - "version": "4.7.9", + "version": "4.7.10", "license": "proprietary", "authors": [ {