Skip to content

Commit

Permalink
fixed code style
Browse files Browse the repository at this point in the history
  • Loading branch information
ProkopovVitaliy committed Apr 20, 2020
1 parent bdeb934 commit e224442
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
</label>
<div class="control">
<div class="nested options-list">
<?php if ($block->showSingle()) : ?>
<?php if ($block->showSingle()): ?>
<?= /* @noEscape */ $block->getSelectionQtyTitlePrice($_selections[0]) ?>
<?= /* @noEscape */ $block->getTierPriceRenderer()->renderTierPrice($_selections[0]) ?>
<input type="hidden"
class="bundle-option-<?= $block->escapeHtmlAttr($_option->getId()) ?> product bundle option"
name="bundle_option[<?= $block->escapeHtml($_option->getId()) ?>]"
value="<?= $block->escapeHtmlAttr($_selections[0]->getSelectionId()) ?>"/>
<?php else :?>
<?php foreach ($_selections as $_selection) : ?>
<?php else: ?>
<?php foreach ($_selections as $_selection): ?>
<div class="field choice">
<input class="bundle-option-<?= $block->escapeHtmlAttr($_option->getId()) ?> checkbox product bundle option change-container-classname"
id="bundle-option-<?= $block->escapeHtmlAttr($_option->getId()) ?>-<?= $block->escapeHtmlAttr($_selection->getSelectionId()) ?>"
Expand Down

0 comments on commit e224442

Please sign in to comment.