Skip to content

Commit

Permalink
fix email test (#10719)
Browse files Browse the repository at this point in the history
  • Loading branch information
tar-bin authored Apr 27, 2023
1 parent 6e0f998 commit 5124db5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/frontend/src/pages/admin/email-settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ async function testEmail() {
const { canceled, result: destination } = await os.inputText({
title: i18n.ts.destination,
type: 'email',
placeholder: instance.maintainerEmail,
default: instance.maintainerEmail ?? '',
placeholder: '[email protected]',
minLength: 1,
});
if (canceled) return;
os.apiWithDialog('admin/send-email', {
Expand Down

0 comments on commit 5124db5

Please sign in to comment.