Skip to content

Commit c5be5e5

Browse files
authored
Fix HTML styling (e.g., hashtag links) showing up as raw HTML in descriptions (#3946)
1 parent ce3de2b commit c5be5e5

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/renderer/components/ft-list-channel/ft-list-channel.vue

+2-3
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,8 @@
5353
<p
5454
v-if="listType !== 'grid'"
5555
class="description"
56-
>
57-
{{ description }}
58-
</p>
56+
v-html="description"
57+
/>
5958
</div>
6059
</div>
6160
</template>

src/renderer/components/ft-list-video/ft-list-video.vue

+2-3
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,8 @@
120120
<p
121121
v-if="listType !== 'grid' && appearance === 'result'"
122122
class="description"
123-
>
124-
{{ description }}
125-
</p>
123+
v-html="description"
124+
/>
126125
</div>
127126
</div>
128127
</template>

0 commit comments

Comments
 (0)