allow html in confirm dialog text

This commit is contained in:
lesion
2022-12-23 01:09:18 +01:00
parent cbed0288fe
commit 34ca8fc124

View File

@@ -9,7 +9,7 @@ v-dialog(v-model='show'
@keydown.esc='cancel')
v-card
v-card-title {{ title }}
v-card-text(v-show='!!message') {{ message }}
v-card-text(v-show='!!message' v-html='message')
v-card-actions
v-spacer
v-btn(outlined color='error' @click='cancel') {{$t('common.cancel')}}