Skip to content

Commit

Permalink
Check if item href is not null for quick items in management toolbar |
Browse files Browse the repository at this point in the history
…Fixes #733
  • Loading branch information
Carlos Lancha committed Mar 14, 2018
1 parent 369bc63 commit 7d7ee44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@
{foreach $item in $actionItems}
{if $item.quickAction and $item.icon and $spritemap}
<li class="nav-item navbar-breakpoint-down-d-none" data-onclick="{$_handleQuickActionClicked}">
{if $item.href}
{if isNonnull($item.href)}
{call ClayLink.render}
{param elementClasses: 'quick-action-item' /}
{param href: $item.href /}
Expand Down

0 comments on commit 7d7ee44

Please sign in to comment.