mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
Don't wrap text in nav (#4035)
* Move v-list-item-text to v-text-overflow, use in tables * Fix type issue
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<template #activator>
|
||||
<v-list-item-icon v-if="section.icon !== undefined"><v-icon :name="section.icon" /></v-list-item-icon>
|
||||
<v-list-item-content>
|
||||
<v-list-item-text>{{ section.name }}</v-list-item-text>
|
||||
<v-text-overflow :text="section.name" />
|
||||
</v-list-item-content>
|
||||
</template>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<v-list-item v-else :to="`/docs${section.to}`" :dense="dense" :value="section.to">
|
||||
<v-list-item-icon v-if="section.icon !== undefined"><v-icon :name="section.icon" /></v-list-item-icon>
|
||||
<v-list-item-content>
|
||||
<v-list-item-text>{{ section.name }}</v-list-item-text>
|
||||
<v-text-overflow :text="section.name" />
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user