mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-28 06:46:13 +03:00
fix(rss): Update overflow rules to handle long name without spaces (#1228)
This commit is contained in:
parent
fe6494ea8e
commit
e2ce2e86f5
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ onUnmounted(() => {
|
|||
<v-list-item :class="{ 'rss-read': article.isRead }" @click="showDescription(article)" @contextmenu="markAsRead(article)">
|
||||
<div class="d-flex">
|
||||
<div>
|
||||
<v-list-item-title class="text-wrap">{{ article.title }}</v-list-item-title>
|
||||
<v-list-item-title class="wrap-anywhere" style="white-space: unset">{{ article.title }}</v-list-item-title>
|
||||
|
||||
<v-list-item-subtitle class="d-block">
|
||||
<div>{{ article.parsedDate.toLocaleString() }}</div>
|
||||
|
|
Loading…
Reference in a new issue