Collection descriptions can get out of the collection's box (#5380)

* Collection descriptions can get out of the collection's box
Fixes #2281

* Update apps/frontend/src/pages/dashboard/collections.vue

Signed-off-by: Calum H. <hendersoncal117@gmail.com>

---------

Signed-off-by: Calum H. <hendersoncal117@gmail.com>
Co-authored-by: Calum H. <hendersoncal117@gmail.com>
This commit is contained in:
Pulsar Programmer
2026-02-16 12:15:05 -05:00
committed by GitHub
parent 2a91fc31f1
commit f01c901445
2 changed files with 3 additions and 1 deletions

View File

@@ -220,7 +220,7 @@
v-if="collection.description"
:title="formatMessage(commonMessages.descriptionLabel)"
>
<p class="m-0">{{ collection.description }}</p>
<p class="m-0 break-words">{{ collection.description }}</p>
</SidebarCard>
<SidebarCard
v-if="collection.id !== 'following'"

View File

@@ -202,6 +202,8 @@ const orderedCollections = computed(() => {
.description {
color: var(--color-secondary);
font-size: var(--font-size-sm);
word-break: break-word;
}
.stat-bar {