Skip to content

Commit

Permalink
Fixing linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
whitdog47 committed Oct 18, 2024
1 parent e08bb05 commit 2fc9e59
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,9 @@
</h3>
<div v-if="isObject(value)">
<!-- Render each sub-value with formatText to handle links and code formatting -->
<span
v-for="(subValue, subKey) in value"
:key="subKey"
v-html="formatText(subValue)"
></span>
<span v-for="(subValue, subKey) in value" :key="subKey" v-html="formatText(subValue)" />
</div>
<span v-else v-html="formatText(value)"></span>
<span v-else v-html="formatText(value)" />
</div>
</div>
<div v-else>
Expand Down

0 comments on commit 2fc9e59

Please sign in to comment.