Skip to content

Commit

Permalink
Merge pull request #1812 from mailchimp/Issue1804-2.4
Browse files Browse the repository at this point in the history
closes #1804 for magento 2.4
  • Loading branch information
gonzaloebiz authored Sep 6, 2023
2 parents 9fbc163 + e5c0ed8 commit 3b989c0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion view/adminhtml/templates/customer/edit/tabs/mailchimp.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ $interest = $block->getInterest();
</div>
<div class="admin__fieldset-wrapper-content">
<fieldset class="admin__fieldset">
<?php if (count($interest)): ?>
<?php foreach($interest as $i): ?>
<div class="admin__field">
<label class="admin__field-label" for="<?php echo $i['interest']['id'] ?>">
Expand Down Expand Up @@ -74,6 +75,11 @@ $interest = $block->getInterest();
</div>
</div>
<?php endforeach; ?>
<?php else: ?>
<div class="admin__field">
<?php echo __("No Interest groups found"); ?>
</div>
<?php endif; ?>
</fieldset>
</div>
</div>
</div>

0 comments on commit 3b989c0

Please sign in to comment.