diff options
| -rw-r--r-- | resources/vue/components/forum/categories/CategoryItem.vue | 4 | ||||
| -rw-r--r-- | resources/vue/components/forum/topics/TopicItem.vue | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/resources/vue/components/forum/categories/CategoryItem.vue b/resources/vue/components/forum/categories/CategoryItem.vue index e20a249..d46a6d9 100644 --- a/resources/vue/components/forum/categories/CategoryItem.vue +++ b/resources/vue/components/forum/categories/CategoryItem.vue @@ -116,7 +116,7 @@ const swapCategory = event => { </div> </div> <p v-if="category.description"> - <small class="line-clamp-3">{{ category.description }}</small> + <small class="line-clamp-3" v-html="category.description"></small> </p> </div> </div> @@ -250,7 +250,7 @@ const swapCategory = event => { </div> </div> <p> - <small class="line-clamp-3">{{ category.description }}</small> + <small class="line-clamp-3" v-html="category.description"></small> </p> </div> <div> diff --git a/resources/vue/components/forum/topics/TopicItem.vue b/resources/vue/components/forum/topics/TopicItem.vue index e5a5620..ed459f4 100644 --- a/resources/vue/components/forum/topics/TopicItem.vue +++ b/resources/vue/components/forum/topics/TopicItem.vue @@ -115,7 +115,7 @@ const swapTopic = event => { </div> </div> <p v-if="topic.description"> - <small class="line-clamp-3">{{ topic.description }}</small> + <small class="line-clamp-3" v-html="topic.description"></small> </p> </div> </div> @@ -242,7 +242,7 @@ const swapTopic = event => { </div> </div> <p> - <small class="line-clamp-3">{{ topic.description }}</small> + <small class="line-clamp-3" v-html="topic.description "></small> </p> </div> <div> |
