Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit a9456ab

Browse files
authored
Merge pull request #906 from roiLeo/fix/galleryItem/description
fix(galleryItem): hotfix description line breaks
2 parents 8b0aece + e8fc68f commit a9456ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/rmrk/Gallery/GalleryItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
<div v-if="meta.description" class="block">
5858
<p class="label">{{ $t('legend')}}</p>
59-
<VueMarkdown v-if="!isLoading" class="is-size-5" :source="meta.description" />
59+
<VueMarkdown v-if="!isLoading" class="is-size-5" :source="meta.description.replaceAll('\n', ' \n')" />
6060
<b-skeleton :count="3" size="is-large" :active="isLoading"></b-skeleton>
6161
</div>
6262

0 commit comments

Comments
 (0)