From 3c24420840ee8ffd33cf86a2aefd7b62a8c07f50 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Mon, 5 Jan 2026 22:29:03 +0100 Subject: [PATCH] fix deperecation --- src/components/Confirm.vue | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/components/Confirm.vue b/src/components/Confirm.vue index 3bb6da409..fd135e0f0 100644 --- a/src/components/Confirm.vue +++ b/src/components/Confirm.vue @@ -13,10 +13,10 @@ @@ -37,16 +37,12 @@ export default { /** Text to use as yes */ yesText: { type: String, - default() { - return this.$t("Yes"); - } + default: null, }, /** Text to use as no */ noText: { type: String, - default() { - return this.$t("No"); - } + default: null, }, /** Title to show on modal. Defaults to translated version of "Config" */ title: {