From 7deaf27526dfbc6c18fdc5971a3b48b69b9e8620 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Chuailei000=E2=80=9D?= <2280131253@qq.com> Date: Thu, 23 Feb 2023 20:05:46 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E9=AA=8C=E8=AF=81MFA=E4=B8=8D=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E9=94=99=E8=AF=AF=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/AccountListTable/ViewSecret.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AccountListTable/ViewSecret.vue b/src/components/AccountListTable/ViewSecret.vue index cb4c12539..2b3ca9f3c 100644 --- a/src/components/AccountListTable/ViewSecret.vue +++ b/src/components/AccountListTable/ViewSecret.vue @@ -119,7 +119,7 @@ export default { mounted() { if (this.showPasswordRecord) { const url = `/api/v1/accounts/account-secrets/${this.account.id}/histories/?limit=1` - this.$axios.get(url).then(resp => { + this.$axios.get(url, { disableFlashErrorMsg: true }).then(resp => { this.versions = resp.count }) }