Skip to content

Commit

Permalink
ENGCOM-8908: Shipping radio button reorder#30257 #32393
Browse files Browse the repository at this point in the history
 - Merge Pull Request #32393 from mageplaza/magento2:shipping-radio-button-reorder#30257
 - Merged commits:
   1. 1be4239
   2. e40e457
   3. b54b852
   4. 7dee9d8
   5. 2821bc1
   6. a57b22b
  • Loading branch information
magento-engcom-team committed Mar 9, 2021
2 parents 6a63aac + a57b22b commit 6bdb765
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@ $taxHelper = $block->getData('taxHelper');
value="<?= $block->escapeHtmlAttr($_code) ?>"
id="s_method_<?= $block->escapeHtmlAttr($_code) ?>" <?= /* @noEscape */ $_checked ?>
class="admin__control-radio required-entry"/>
<?= /* @noEscape */ $secureRenderer->renderEventListenerAsTag(
'onclick',
"order.setShippingMethod(this.value)",
'input#s_method_' . $block->escapeHtmlAttr($_code)
) ?>
<label class="admin__field-label" for="s_method_<?= $block->escapeHtmlAttr($_code) ?>">
<?= $block->escapeHtml($_rate->getMethodTitle() ?
$_rate->getMethodTitle() : $_rate->getMethodDescription()) ?> -
Expand All @@ -59,6 +54,11 @@ $taxHelper = $block->getData('taxHelper');
<?php endif; ?>
</strong>
</label>
<?= /* @noEscape */ $secureRenderer->renderEventListenerAsTag(
'onclick',
"order.setShippingMethod(this.value)",
'input#s_method_' . $block->escapeHtmlAttr($_code)
) ?>
<?php endif; ?>
</li>
<?php endforeach; ?>
Expand Down

0 comments on commit 6bdb765

Please sign in to comment.