From 34ca8fc124ed1b4e316496b292dca7019c175d1c Mon Sep 17 00:00:00 2001 From: lesion Date: Fri, 23 Dec 2022 01:09:18 +0100 Subject: [PATCH] allow html in confirm dialog text --- components/Confirm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Confirm.vue b/components/Confirm.vue index 0c8f2919..05ddc28f 100644 --- a/components/Confirm.vue +++ b/components/Confirm.vue @@ -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')}}