Skip to content

Commit

Permalink
Fix XSS in displayong firmware props
Browse files Browse the repository at this point in the history
  • Loading branch information
Slipn3r committed Nov 17, 2022
1 parent aec511d commit d582c47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/Updater.vue
Expand Up @@ -23,10 +23,10 @@
<template v-slot:option="scope">
<q-item v-bind="scope.itemProps">
<q-item-section class="items-start">
<q-item-label v-html="scope.opt.label" />
<q-item-label v-text="scope.opt.label" />
</q-item-section>
<q-item-section class="items-end">
<q-item-label v-html="scope.opt.version" :class="'fw-option-label ' + scope.opt.value"/>
<q-item-label v-text="scope.opt.version" :class="'fw-option-label ' + scope.opt.value"/>
</q-item-section>
</q-item>
</template>
Expand Down

0 comments on commit d582c47

Please sign in to comment.