Skip to content

Commit

Permalink
Merge pull request magento#990 from magento-engcom/MSI-640
Browse files Browse the repository at this point in the history
fix disabling source fields on source selection page
  • Loading branch information
maghamed authored Apr 20, 2018
2 parents 83fca9c + d56ca3e commit 3a195cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ define([
* @param {String} selected
*/
toggleDisable: function (selected) {
this.disabled(selected ? selected !== this.sourceCode : !!selected);
this.disabled(selected ? selected !== this.sourceCode : !selected);
}
});
});

0 comments on commit 3a195cf

Please sign in to comment.