Making sure auth section of form can always be filled in.
This commit is contained in:
parent
db393f05be
commit
2feabb594a
|
@ -75,9 +75,6 @@
|
||||||
type: ConfigTypes.SMTP,
|
type: ConfigTypes.SMTP,
|
||||||
config: {
|
config: {
|
||||||
secure: true,
|
secure: true,
|
||||||
auth: {
|
|
||||||
type: "login",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -85,6 +82,11 @@
|
||||||
}
|
}
|
||||||
loading = false
|
loading = false
|
||||||
requireAuth = smtpConfig.config.auth != null
|
requireAuth = smtpConfig.config.auth != null
|
||||||
|
// always attach the auth for the forms purpose -
|
||||||
|
// this will be removed later if required
|
||||||
|
smtpConfig.config.auth = {
|
||||||
|
type: "login",
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fetchSmtp()
|
fetchSmtp()
|
||||||
|
|
Loading…
Reference in New Issue