From 7cef8842976a90c232e88988332a6d2afc8f821e Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Mon, 5 Aug 2024 13:53:24 +0200 Subject: [PATCH] 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 --- core/src/components/AppMenu.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/src/components/AppMenu.vue b/core/src/components/AppMenu.vue index f982776827e0e..5317d7b575815 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 }} +