Skip to content

Commit

Permalink
Merge pull request #4602 from jorgemunozc/master
Browse files Browse the repository at this point in the history
Fix issue #4601 - Passthrough options for components not showing in web documentation
  • Loading branch information
tugcekucukoglu authored Oct 13, 2023
2 parents 66fe4f9 + 082f513 commit 38140b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/doc/DocApiTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
</div>

<template v-else>
<span v-if="v?.includes('<a')" :id="id + '.' + k" class="doc-option-description" v-html="v"> </span>
<span v-if="typeof v === 'string' && v?.includes('<a')" :id="id + '.' + k" class="doc-option-description" v-html="v"> </span>
<span v-else :id="id + '.' + k" class="doc-option-description">{{ v }} </span>
</template>
</template>
Expand Down

0 comments on commit 38140b5

Please sign in to comment.