Skip to content

Commit a095e4f

Browse files
author
Stanislav Idolov
authored
ENGCOM-3204: [Backport] Fix product details causing Validation error #18656
2 parents c19d876 + c759881 commit a095e4f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/code/Magento/Catalog/view/frontend/templates/product/view/details.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
$label = $block->getChildData($alias, 'title');
2222
?>
2323
<div class="data item title"
24-
aria-labeledby="tab-label-<?= /* @escapeNotVerified */ $alias ?>-title"
24+
aria-labelledby="tab-label-<?= /* @escapeNotVerified */ $alias ?>-title"
2525
data-role="collapsible" id="tab-label-<?= /* @escapeNotVerified */ $alias ?>">
2626
<a class="data switch"
2727
tabindex="-1"

app/code/Magento/Checkout/view/frontend/templates/cart/form.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
class="cart items data table"
2727
data-mage-init='{"shoppingCart":{"emptyCartButton": "action.clear",
2828
"updateCartActionContainer": "#update_cart_action_container"}}'>
29-
<caption role="heading" aria-level="2" class="table-caption"><?= /* @escapeNotVerified */ __('Shopping Cart Items') ?></caption>
29+
<caption class="table-caption"><?= /* @escapeNotVerified */ __('Shopping Cart Items') ?></caption>
3030
<thead>
3131
<tr>
3232
<th class="col item" scope="col"><span><?= /* @escapeNotVerified */ __('Item') ?></span></th>

app/code/Magento/Checkout/view/frontend/templates/cart/item/default.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ $canApplyMsrp = $helper->isShowBeforeOrderConfirm($product) && $helper->isMinima
111111
</td>
112112
</tr>
113113
<tr class="item-actions">
114-
<td colspan="100">
114+
<td colspan="4">
115115
<div class="actions-toolbar">
116116
<?= /* @escapeNotVerified */ $block->getActions($_item) ?>
117117
</div>

0 commit comments

Comments
 (0)