Skip to content

Commit

Permalink
IBX-6638: Provided tooltips for breadcrumbs in the Content View (#918)
Browse files Browse the repository at this point in the history
  • Loading branch information
barw4 authored Oct 5, 2023
1 parent 0a877d6 commit c32dcb8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
{% for item in items %}
<li class="breadcrumb-item{% if loop.last %} active{% endif %}">
{% if not loop.last and item.url is defined %}
<a class="breadcrumb-item__link" href="{{ item.url }}">{{ item.value }}</a>
<a class="breadcrumb-item__link" title="{{ item.value }}" href="{{ item.url }}">
{{ item.value }}
</a>
{% else %}
{{ item.value }}
{% endif %}
Expand Down

0 comments on commit c32dcb8

Please sign in to comment.