We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d34b0b commit ab443a0Copy full SHA for ab443a0
app/code/Magento/Rule/view/adminhtml/web/rules.js
@@ -126,7 +126,7 @@ define([
126
var values = this.updateElement.value.split(','),
127
s = '';
128
129
- for (i = 0; i < values.length; i++) {
+ for (var i = 0; i < values.length; i++) {
130
s = values[i].strip();
131
132
if (s != '') {
@@ -255,7 +255,7 @@ define([
255
if (elem && elem.options) {
256
var selectedOptions = [];
257
258
- for (i = 0; i < elem.options.length; i++) {
+ for (var i = 0; i < elem.options.length; i++) {
259
if (elem.options[i].selected) {
260
selectedOptions.push(elem.options[i].text);
261
}
0 commit comments