Skip to content

Commit ea43076

Browse files
you-henghbrc-dd
andauthored
fix(theme): make features support line wrapping (#1913)
Co-authored-by: Divyansh Singh <40380293+brc-dd@users.noreply.github.com>
1 parent 35a1760 commit ea43076

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/theme-default/components/VPFeature.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ defineProps<{
2424
:width="icon.width"
2525
/>
2626
<div v-else-if="icon" class="icon">{{ icon }}</div>
27-
<h2 class="title">{{ title }}</h2>
28-
<p class="details">{{ details }}</p>
27+
<h2 class="title" v-html="title"></h2>
28+
<p class="details" v-html="details"></p>
2929

3030
<div v-if="linkText" class="link-text">
3131
<p class="link-text-value">

0 commit comments

Comments
 (0)