Fix HTML styling (e.g., hashtag links) showing up as raw HTML in descriptions (#3946)

This commit is contained in:
Jason 2023-08-28 22:15:21 +00:00 committed by GitHub
parent ce3de2bb07
commit c5be5e5700
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 6 deletions

View File

@ -53,9 +53,8 @@
<p
v-if="listType !== 'grid'"
class="description"
>
{{ description }}
</p>
v-html="description"
/>
</div>
</div>
</template>

View File

@ -120,9 +120,8 @@
<p
v-if="listType !== 'grid' && appearance === 'result'"
class="description"
>
{{ description }}
</p>
v-html="description"
/>
</div>
</div>
</template>