Skip to content

Commit

Permalink
Typo in addAction function: _.findIdnex should be .findIndex, fixes u…
Browse files Browse the repository at this point in the history
…nresolved function
  • Loading branch information
ikk0 committed Jul 18, 2015
1 parent b0372d6 commit 7461439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/Magento/Ui/view/base/web/js/grid/massactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ define([
*/
addAction: function (action) {
var actions = this.actions(),
index = _.findIdnex(actions, {
index = _.findIndex(actions, {
type: action.type
});

Expand Down

0 comments on commit 7461439

Please sign in to comment.