-
{{ $t('appstore.category.popular') }}
+
{{ $t('appstore.category.popular') }}
-
{{ $t('appstore.category.all') }}
+
{{ $t('appstore.category.all') }}
diff --git a/dashboard/src/views/DomainsView.vue b/dashboard/src/views/DomainsView.vue
index afe169501..14371ef93 100644
--- a/dashboard/src/views/DomainsView.vue
+++ b/dashboard/src/views/DomainsView.vue
@@ -42,10 +42,12 @@ const inputDialog = useTemplateRef('inputDialog');
async function onRemove(domain) {
const yes = await inputDialog.value.confirm({
- message: t('domains.removeDialog.title', { domain: domain.domain }),
+ title: t('domains.removeDialog.title'),
+ message: t('domains.removeDialog.description', { domain: domain.domain }),
confirmStyle: 'danger',
confirmLabel: t('domains.removeDialog.removeAction'),
- rejectLabel: t('main.dialog.cancel')
+ rejectLabel: t('main.dialog.cancel'),
+ rejectStyle: 'secondary'
});
if (!yes) return;