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:
Rijk van Zanten
2021-02-12 16:39:17 -05:00
committed by GitHub
parent c440c66461
commit 81fc8443df
23 changed files with 122 additions and 182 deletions

View File

@@ -9,7 +9,7 @@
</template>
<v-list>
<v-list-item v-for="n in 5" :key="n" @click="edit('heading', { level: n })">
<v-list-item-text>{{ $t(`wysiwyg_options.h${n}`) }}</v-list-item-text>
<v-text-overflow :text="$t(`wysiwyg_options.h${n}`)" />
</v-list-item>
</v-list>
</v-menu>