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 168d998 commit 421d946Copy full SHA for 421d946
app/code/Magento/Bundle/view/frontend/templates/email/order/items/shipment/default.phtml
@@ -48,7 +48,7 @@
48
<td class="item-qty">
49
<?php if (($block->isShipmentSeparately() && $_item->getParentItem()) || (!$block->isShipmentSeparately() && !$_item->getParentItem())) : ?>
50
<?php if (isset($shipItems[$_item->getId()])) : ?>
51
- <?= $block->escapeHtml($shipItems[$_item->getId()]->getQty() * 1) ?>
+ <?= (int)$shipItems[$_item->getId()]->getQty() * 1 ?>
52
<?php elseif ($_item->getIsVirtual()) : ?>
53
<?= $block->escapeHtml(__('N/A')) ?>
54
<?php else : ?>
0 commit comments