Skip to content

Commit

Permalink
Merge pull request ezsystems#141 from ezsystems/space_breadcrumb
Browse files Browse the repository at this point in the history
Fixed the issue where the breadcrumb item appears to have a trailing space
  • Loading branch information
dpobel committed Dec 17, 2014
2 parents ee01928 + 80812d2 commit 2a0e364
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Resources/views/components/breadcrumbs.html.twig
Expand Up @@ -8,9 +8,7 @@
{% for item in items %}
<li class="ez-breadcrumbs-item">
{% if item.link is not empty %}
<a href="{{ item.link }}">
{{ item.label }}
</a>
<a href="{{ item.link }}">{{ item.label }}</a>
{% else %}
{{ item.label }}
{% endif %}
Expand Down

0 comments on commit 2a0e364

Please sign in to comment.