Skip to content

Commit ee8d9ea

Browse files
committed
Fix static after merge with mainline
1 parent 30298ca commit ee8d9ea

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/Sales/view/adminhtml/templates/order/create/coupons

1 file changed

+2
-2
lines changed

app/code/Magento/Sales/view/adminhtml/templates/order/create/coupons/form.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<div class="admin__field field-apply-coupon-code">
1111
<label class="admin__field-label"><span><?= $block->escapeHtml(__('Apply Coupon Code')) ?></span></label>
1212
<div class="admin__field-control">
13-
<?php if (!$block->getCouponCode()): ?>
13+
<?php if (!$block->getCouponCode()) : ?>
1414
<input type="text" class="admin__control-text" id="coupons:code" value="" name="coupon_code" />
15-
<?= $block->getButtonHtml(__('Apply'), 'order.applyCoupon($F(\'coupons:code\'))') ?>
15+
<?= $block->getButtonHtml(__('Apply'), 'order.applyCoupon($F(\'coupons:code\'))') ?>
1616
<?php endif; ?>
1717
<?php if ($block->getCouponCode()) : ?>
1818
<p class="added-coupon-code">

0 commit comments

Comments
 (0)