Skip to content

Commit

Permalink
Remove v-html tags
Browse files Browse the repository at this point in the history
  • Loading branch information
lserra-iov committed Oct 31, 2023
1 parent 0c6f80d commit d8dfe71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/components/exchange/DeviceErrorDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</v-row>
<v-col cols="12" align-self="center" class="pt-0" v-if="errorType">
<v-col offset="2" cols="8">
<p class="justify-center"><span v-html="errorMessage"></span></p>
<p class="justify-center"><span>{{ errorMessage }}</span></p>
<p class="justify-center" v-if="urlToMoreInformation">
<a target='_blank' :href='urlToMoreInformation'>{{messageToUserOnLink}}</a>
</p>
Expand All @@ -27,7 +27,7 @@
</v-col>
<v-col v-else cols="12" align-self="center" class="pt-0">
<v-col offset="3" cols="6">
<p class="justify-center"><span v-html="errorMessage"></span></p>
<p class="justify-center"><span>{{ errorMessage }}</span></p>
</v-col>
<v-row class="mx-0 my-6" justify="space-around">
<v-btn width="200" height="50" variant="outlined" rounded color="#000000"
Expand Down

0 comments on commit d8dfe71

Please sign in to comment.