Skip to content

Commit 95f48c2

Browse files
Update visual.phtml
Start tag (<th>) not closed properly, expected '>'.
1 parent 890f8ac commit 95f48c2

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute

1 file changed

+1
-1
lines changed

app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/visual.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $stores = $block->getStoresSortedBySortOrder();
2121
<th class="col-default"><span><?= $block->escapeHtml(__('Is Default')) ?></span></th>
2222
<th><span><?= $block->escapeHtml(__('Swatch')) ?></span></th>
2323
<?php foreach ($stores as $_store) : ?>
24-
<th<?= ($_store->getId() == \Magento\Store\Model\Store::DEFAULT_STORE_ID) ? ' class="_required"' : '' ?>
24+
<th<?= ($_store->getId() == \Magento\Store\Model\Store::DEFAULT_STORE_ID) ? ' class="_required"' : '' ?>>
2525
<span><?= $block->escapeHtml($_store->getName()) ?></span>
2626
</th>
2727
<?php endforeach; ?>

0 commit comments

Comments
 (0)