aboutsummaryrefslogtreecommitdiffstats
path: root/core/src/components
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-08-05 13:53:24 +0200
committerAndy Scherzinger <info@andy-scherzinger.de>2024-08-07 22:32:04 +0200
commit7cef8842976a90c232e88988332a6d2afc8f821e (patch)
treec8eda0e7090ffe6e1092c6f45035e1bf4974be3e /core/src/components
parent4417f0f3287b33de7412f07cdcd8598d93b03650 (diff)
downloadnextcloud-server-7cef8842976a90c232e88988332a6d2afc8f821e.tar.gz
nextcloud-server-7cef8842976a90c232e88988332a6d2afc8f821e.zip
fix: Make app menu overflow entries vertically alignedFix/app-menu-overflow
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>
Diffstat (limited to 'core/src/components')
-rw-r--r--core/src/components/AppMenu.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/src/components/AppMenu.vue b/core/src/components/AppMenu.vue
index f982776827e..5317d7b5758 100644
--- a/core/src/components/AppMenu.vue
+++ b/core/src/components/AppMenu.vue
@@ -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>