Skip to content

Commit 40a5cc3

Browse files
authored
fix: render carrier remediation with HTML (#1283)
- Replace text interpolation with v-html to render carrierRemediation with HTML in PhoneDoctor.vue
1 parent a5f114b commit 40a5cc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/phone/PhoneDoctor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,7 @@ onMounted(() => {
10801080
{{ $t(formatCmsItem(option.title)) }}
10811081
</template>
10821082
</base-select>
1083-
{{ $t(formatCmsItem(carrierRemediation)) }}
1083+
<span v-html="$t(formatCmsItem(carrierRemediation))"> </span>
10841084
</div>
10851085

10861086
<base-button

0 commit comments

Comments
 (0)