Skip to content

Commit

Permalink
[FIX] Prevent duplicated field text (#5592)
Browse files Browse the repository at this point in the history
This PR updates the conditional logic to ensure that the field text is
not duplicated.
  • Loading branch information
leiyre authored Oct 10, 2024
1 parent 90e33ad commit e4b2d79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<div class="content-area --body1">
<MarkdownRenderer v-if="useMarkdown" :markdown="fieldText" />
<Sandbox v-else-if="isHTML" :content="fieldText" />
<div :class="classes" v-html="fieldText" />
<div v-else :class="classes" v-html="fieldText" />
<template>
<style :key="name" scoped>
::highlight(search-text-highlight-{{name}}) {
Expand Down

0 comments on commit e4b2d79

Please sign in to comment.