Skip to content

Commit 9c72b69

Browse files
committed
MC-16611: Fix Unrelated Static Test Failures
- fix bugs
1 parent f3909aa commit 9c72b69

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ $_colspan = $block->isAddAfter() ? 2 : 1;
123123
// add existing rows
124124
<?php
125125
foreach ($block->getArrayRows() as $_rowId => $_row) {
126-
echo "arrayRow{$block->escapeJs($_htmlId)}.add(" . $_row->toJson() . ");\n";
126+
echo /** noEscape */ "arrayRow{$block->escapeJs($_htmlId)}.add(" . /** noEscape */$_row->toJson() . ");\n";
127127
}
128128
?>
129129

0 commit comments

Comments
 (0)