Skip to content

Commit

Permalink
fix: Make app menu overflow entries vertically aligned
Browse files Browse the repository at this point in the history
The `name` property expects a `text` and just adds basically a "heading" for the text,
so lets instead just utilize the default slot.

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
  • Loading branch information
susnux authored and AndyScherzinger committed Aug 7, 2024
1 parent 4417f0f commit 7cef884
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/src/components/AppMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
:aria-current="app.active ? 'page' : false"
:href="app.href"
:icon="app.icon"
:name="app.name"
class="app-menu__overflow-entry" />
class="app-menu__overflow-entry">
{{ app.name }}
</NcActionLink>
</NcActions>
</nav>
</template>
Expand Down

0 comments on commit 7cef884

Please sign in to comment.