Skip to content

Commit

Permalink
fix(rss): Update overflow rules to handle long name without spaces (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Larsluph committed Nov 2, 2023
1 parent fe6494e commit e2ce2e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/RssArticles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit e2ce2e8

Please sign in to comment.