mirror of https://gitee.com/answerdev/answer.git
fix(admin/smtp): add label for smtp authentication
This commit is contained in:
parent
5209813685
commit
50133f5fe3
|
@ -1185,7 +1185,8 @@ ui:
|
||||||
text: Provide email address that will receive test sends.
|
text: Provide email address that will receive test sends.
|
||||||
msg: Test email recipients is invalid
|
msg: Test email recipients is invalid
|
||||||
smtp_authentication:
|
smtp_authentication:
|
||||||
label: SMTP Authentication
|
label: Enable authentication
|
||||||
|
title: SMTP Authentication
|
||||||
msg: SMTP authentication cannot be empty.
|
msg: SMTP authentication cannot be empty.
|
||||||
"yes": "Yes"
|
"yes": "Yes"
|
||||||
"no": "No"
|
"no": "No"
|
||||||
|
|
|
@ -46,7 +46,8 @@ const Smtp: FC = () => {
|
||||||
},
|
},
|
||||||
smtp_authentication: {
|
smtp_authentication: {
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
title: t('smtp_authentication.label'),
|
title: t('smtp_authentication.title'),
|
||||||
|
label: t('smtp_authentication.label'),
|
||||||
enum: [true, false],
|
enum: [true, false],
|
||||||
enumNames: [t('smtp_authentication.yes'), t('smtp_authentication.no')],
|
enumNames: [t('smtp_authentication.yes'), t('smtp_authentication.no')],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue