fix: Make app menu overflow entries vertically aligned

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>
This commit is contained in:
Ferdinand Thiessen 2024-08-05 13:53:24 +02:00 committed by Andy Scherzinger
parent 4417f0f328
commit 7cef884297
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -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>