Skip to content

Commit

Permalink
Fix HTML styling (e.g., hashtag links) showing up as raw HTML in desc…
Browse files Browse the repository at this point in the history
…riptions
  • Loading branch information
kommunarr committed Aug 26, 2023
1 parent 3bfa370 commit c3cfa7d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions src/renderer/components/ft-list-channel/ft-list-channel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,8 @@
<p
v-if="listType !== 'grid'"
class="description"
>
{{ description }}
</p>
v-html="description"
/>
</div>
</div>
</template>
Expand Down
5 changes: 2 additions & 3 deletions src/renderer/components/ft-list-video/ft-list-video.vue
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,8 @@
<p
v-if="listType !== 'grid' && appearance === 'result'"
class="description"
>
{{ description }}
</p>
v-html="description"
/>
</div>
</div>
</template>
Expand Down

0 comments on commit c3cfa7d

Please sign in to comment.