Skip to content

Commit a51fff5

Browse files
author
Oleksii Korshenko
authored
MAGETWO-67555: Change value-assignment to a setValue call #5147
2 parents 6893626 + f62095e commit a51fff5

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Config/view/adminhtml/templates/system/config/form/field

1 file changed

+1
-1
lines changed

Diff for: app/code/Magento/Config/view/adminhtml/templates/system/config/form/field/array.phtml

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ $_colspan = $block->isAddAfter() ? 2 : 1;
9393
var rowInputElementNames = Object.keys(rowData.column_values);
9494
for (var i = 0; i < rowInputElementNames.length; i++) {
9595
if ($(rowInputElementNames[i])) {
96-
$(rowInputElementNames[i]).value = rowData.column_values[rowInputElementNames[i]];
96+
$(rowInputElementNames[i]).setValue(rowData.column_values[rowInputElementNames[i]]);
9797
}
9898
}
9999
}

0 commit comments

Comments
 (0)