Skip to content

Commit 1308ae1

Browse files
committed
fix(PrimeOutputText): remove wrapper span
1 parent 9e26ba5 commit 1308ae1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/PrimeOutputText.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const { hasPrefix, hasPrefixIcon, hasSuffix, hasSuffixIcon } = useFormKitSection
3636
{{ context?.prefix }}
3737
</span>
3838
<span v-if="context?.html" :id="context?.id" :class="context?.attrs?.class" :style="context?.attrs?.style" v-html="textValue" />
39-
<span v-else :id="context?.id" v-text="textValue" />
39+
<span v-else :id="context?.id" :class="context?.attrs?.class" :style="context?.attrs?.style" v-text="textValue" />
4040
<span v-if="hasSuffix" class="formkit-suffix">
4141
{{ context?.suffix }}
4242
</span>

0 commit comments

Comments
 (0)