diff --git a/components/account/AccountMoreButton.vue b/components/account/AccountMoreButton.vue index 3a179fa2..eb78d16e 100644 --- a/components/account/AccountMoreButton.vue +++ b/components/account/AccountMoreButton.vue @@ -26,7 +26,8 @@ function shareAccount() { async function toggleReblogs() { if (!relationship!.showingReblogs && await openConfirmDialog({ - title: t('confirm.show_reblogs.title', [account.acct]), + title: t('confirm.show_reblogs.title'), + description: t('confirm.show_reblogs.description', [account.acct]), confirm: t('confirm.show_reblogs.confirm'), cancel: t('confirm.show_reblogs.cancel'), }) !== 'confirm') diff --git a/components/list/ListEntry.vue b/components/list/ListEntry.vue index 8f50c793..625fb806 100644 --- a/components/list/ListEntry.vue +++ b/components/list/ListEntry.vue @@ -58,7 +58,8 @@ async function removeList() { return const confirmDelete = await openConfirmDialog({ - title: t('confirm.delete_list.title', [list.value.title]), + title: t('confirm.delete_list.title'), + description: t('confirm.delete_list.description', [list.value.title]), confirm: t('confirm.delete_list.confirm'), cancel: t('confirm.delete_list.cancel'), }) diff --git a/components/modal/ModalConfirm.vue b/components/modal/ModalConfirm.vue index 9820238b..a9b9ed3b 100644 --- a/components/modal/ModalConfirm.vue +++ b/components/modal/ModalConfirm.vue @@ -10,7 +10,7 @@ const emit = defineEmits<{