Skip to content

Commit

Permalink
SF | Fixes #1178
Browse files Browse the repository at this point in the history
  • Loading branch information
matuzalemsteles committed Sep 12, 2018
1 parent 3cd466d commit 1da1a60
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,9 @@
</li>
</ul>

{let $actionsItemsIsEmpty: length($actionItems) > 0 /}
{let $actionItemsIsEmpty: length($actionItems) > 0 /}

{if $actionsItemsIsEmpty or $showInfoButton}
{if $actionItemsIsEmpty or $showInfoButton}
<ul class="navbar-nav">
{if $showInfoButton}
<li class="nav-item">
Expand All @@ -273,7 +273,7 @@
</li>
{/if}

{if $actionsItemsIsEmpty}
{if $actionItemsIsEmpty}
{foreach $item in $actionItems}
{if $item.quickAction and $item.icon and $spritemap}
<li class="nav-item navbar-breakpoint-down-d-none" data-quick-action-index="{index($item)}" data-onclick="{$_handleQuickActionClicked}">
Expand Down

0 comments on commit 1da1a60

Please sign in to comment.