Make input dialogs in mail view non-modal
This commit is contained in:
@@ -54,7 +54,8 @@ async function onSendTestMail() {
|
||||
message: t('emails.testMailDialog.description', { domain: domain.value }),
|
||||
confirmLabel: t('emails.testMailDialog.sendAction'),
|
||||
rejectLabel: t('main.dialog.cancel'),
|
||||
rejectStyle: 'secondary'
|
||||
rejectStyle: 'secondary',
|
||||
modal: false,
|
||||
});
|
||||
|
||||
if (!address) return;
|
||||
@@ -86,6 +87,7 @@ async function onAskIncomingToggle(value) {
|
||||
confirmLabel: t('email.disableEmailDialog.disableAction'),
|
||||
rejectLabel: t('main.dialog.cancel'),
|
||||
rejectStyle: 'secondary',
|
||||
modal: false,
|
||||
});
|
||||
|
||||
// reset switch
|
||||
|
||||
Reference in New Issue
Block a user