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: {