From a9d70fe27e3edc089c2f19ba3e5a62ef7839c9c6 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Fri, 13 Jun 2025 17:23:43 +0200 Subject: [PATCH] Preselect first domain when adding a new mailbox --- dashboard/src/components/MailboxDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/components/MailboxDialog.vue b/dashboard/src/components/MailboxDialog.vue index 0e9dea53b..c1034f7cf 100644 --- a/dashboard/src/components/MailboxDialog.vue +++ b/dashboard/src/components/MailboxDialog.vue @@ -84,7 +84,7 @@ defineExpose({ mailbox.value = m; name.value = m ? m.name : ''; - domain.value = m ? m.domain : ''; + domain.value = m ? m.domain : props.domains[0].domain; ownerId.value = m ? m.ownerId : ''; aliases.value = m ? JSON.parse(JSON.stringify(m.aliases)) : []; active.value = m ? m.active : true;