Skip to content

Commit 336112a

Browse files
committed
make changes based on static tests
1 parent 7743252 commit 336112a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ define([
2727
modules: {
2828
selections: '${ $.selectProvider }'
2929
},
30-
actionClicked: false,
30+
actionClicked: false
3131
},
3232

3333
/**
@@ -61,7 +61,7 @@ define([
6161
return this;
6262
}
6363

64-
action = this.getAction(actionIndex);
64+
action = this.getAction(actionIndex);
6565

6666
if (action.actionClicked && !action.timeoutExpired) {
6767
return this;
@@ -74,7 +74,7 @@ define([
7474

7575
this.actions().forEach(function (item) {
7676
item.actionClicked = (item.type === actionIndex);
77-
})
77+
});
7878

7979
action.timeoutExpired = false;
8080
setTimeout(function () {
@@ -141,7 +141,7 @@ define([
141141
*/
142142
_getCallback: function (action, selections) {
143143
var callback = action.callback,
144-
args = [action, selections];
144+
args = [action, selections];
145145

146146
if (utils.isObject(callback)) {
147147
args.unshift(callback.target);

0 commit comments

Comments
 (0)