Skip to content

Commit aa21f38

Browse files
committed
Merge remote-tracking branch '37996/multiple-post-request' into comm_prs_247beta3_dec
2 parents 7ed9930 + e4e9be1 commit aa21f38

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

app/code/Magento/Ui/view/base/web/js/grid/massactions.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,15 @@ define([
6060
return this;
6161
}
6262

63-
action = this.getAction(actionIndex);
63+
action = this.getAction(actionIndex);
6464
callback = this._getCallback(action, data);
6565

6666
action.confirm ?
6767
this._confirm(action, callback) :
6868
callback();
6969

70+
this.close();
71+
7072
return this;
7173
},
7274

@@ -127,7 +129,7 @@ define([
127129
*/
128130
_getCallback: function (action, selections) {
129131
var callback = action.callback,
130-
args = [action, selections];
132+
args = [action, selections];
131133

132134
if (utils.isObject(callback)) {
133135
args.unshift(callback.target);

0 commit comments

Comments
 (0)