fix email test (#10719)
This commit is contained in:
parent
6e0f998fb2
commit
5124db57d2
1 changed files with 3 additions and 1 deletions
|
@ -96,7 +96,9 @@ async function testEmail() {
|
||||||
const { canceled, result: destination } = await os.inputText({
|
const { canceled, result: destination } = await os.inputText({
|
||||||
title: i18n.ts.destination,
|
title: i18n.ts.destination,
|
||||||
type: 'email',
|
type: 'email',
|
||||||
placeholder: instance.maintainerEmail,
|
default: instance.maintainerEmail ?? '',
|
||||||
|
placeholder: 'test@example.com',
|
||||||
|
minLength: 1,
|
||||||
});
|
});
|
||||||
if (canceled) return;
|
if (canceled) return;
|
||||||
os.apiWithDialog('admin/send-email', {
|
os.apiWithDialog('admin/send-email', {
|
||||||
|
|
Loading…
Reference in a new issue