Skip to content

Commit

Permalink
Add title attribute for app navigation items.
Browse files Browse the repository at this point in the history
  • Loading branch information
AasthaGupta committed Oct 28, 2018
1 parent 1e79005 commit 19d1760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AppNavigation/AppNavigationItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<!-- Navigation item -->
<nav-element v-else :id="item.id" v-bind="navElement(item)"
:class="[{'icon-loading-small': item.loading, 'open': item.opened, 'collapsible': item.collapsible&&item.children&&item.children.length>0 }, item.classes]">
:title="item.title" :class="[{'icon-loading-small': item.loading, 'open': item.opened, 'collapsible': item.collapsible&&item.children&&item.children.length>0 }, item.classes]">

<!-- Bullet -->
<div v-if="item.bullet" :style="{ backgroundColor: item.bullet }" class="app-navigation-entry-bullet" />
Expand Down

0 comments on commit 19d1760

Please sign in to comment.