Skip to content

Commit

Permalink
fix: tooltip title
Browse files Browse the repository at this point in the history
  • Loading branch information
nedpals committed Sep 24, 2023
1 parent 0e04f87 commit b165f3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/components/ui/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
@click="isMenuOpen = false"
:class="[{'is-active': entry.isCurrent}, entry.class]"
class="menu-item"
v-tooltip.right="canExpandTooltip ? entry.name : null" >
v-tooltip.right="canExpandTooltip ? entry.title : null" >
<component :is="entry.isCurrent ? entry.activeIcon : entry.icon" />
<div class="flex flex-col space-y-0.5">
<span>{{ entry.title }}</span>
Expand Down

0 comments on commit b165f3c

Please sign in to comment.