Skip to content

Commit

Permalink
fix(theme): allow adding html as feature icons
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Mar 26, 2023
1 parent 3235c23 commit e5bc1e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/theme-default/components/VPFeature.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ defineProps<{
:height="icon.height"
:width="icon.width"
/>
<div v-else-if="icon" class="icon">{{ icon }}</div>
<div v-else-if="icon" class="icon" v-html="icon"></div>
<h2 class="title" v-html="title"></h2>
<p v-if="details" class="details" v-html="details"></p>

Expand Down

0 comments on commit e5bc1e1

Please sign in to comment.