From 719e3bd63cc22588e2e505f3cfe3c604233770bb Mon Sep 17 00:00:00 2001 From: QuentinHsu Date: Tue, 29 Mar 2022 22:22:01 +0800 Subject: [PATCH] fix: wrong response field is used (#526) --- src/views/system/optiontabs/SmtpTab.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/system/optiontabs/SmtpTab.vue b/src/views/system/optiontabs/SmtpTab.vue index 671bca3c..70968fe2 100644 --- a/src/views/system/optiontabs/SmtpTab.vue +++ b/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