Browse Source

fix: wrong response field is used (#526)

pull/529/head
QuentinHsu 3 years ago committed by GitHub
parent
commit
719e3bd63c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/views/system/optiontabs/SmtpTab.vue

2
src/views/system/optiontabs/SmtpTab.vue

@ -151,7 +151,7 @@ export default {
apiClient.mail
.testSmtpService(this.mailParam)
.then(response => {
this.$message.info(response.data)
this.$message.info(response.message)
})
.catch(() => {
this.sendErrored = true

Loading…
Cancel
Save