mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
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:
parent
4417f0f328
commit
7cef884297
1 changed files with 3 additions and 2 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue