Skip to content

Commit

Permalink
Fix XSS issue in the multiselect dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbestle committed Aug 23, 2022
1 parent 9519feb commit b5b8863
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions panel/src/components/Forms/Input/MultiselectInput.vue
Expand Up @@ -58,8 +58,7 @@
>
<!-- eslint-disable-next-line vue/no-v-html -->
<span v-html="option.display" />
<!-- eslint-disable-next-line vue/no-v-html -->
<span class="k-multiselect-value" v-html="option.info" />
<span class="k-multiselect-value" v-text="option.info" />
</k-dropdown-item>

<k-dropdown-item
Expand Down

0 comments on commit b5b8863

Please sign in to comment.