From 27100594a472be09b72f0146f9345d8f0bac1b8a Mon Sep 17 00:00:00 2001 From: ssongliu <73214554+ssongliu@users.noreply.github.com> Date: Sat, 12 Aug 2023 23:12:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=20loading=20(#1936)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/database/mysql/remote/operate/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/database/mysql/remote/operate/index.vue b/frontend/src/views/database/mysql/remote/operate/index.vue index 7a753c0d6..44569bb64 100644 --- a/frontend/src/views/database/mysql/remote/operate/index.vue +++ b/frontend/src/views/database/mysql/remote/operate/index.vue @@ -150,7 +150,7 @@ const onSubmit = async (formEl: FormInstance | undefined, operation: string) => if (operation === 'create') { await addRemoteDB(param) .then(() => { - loading.value = true; + loading.value = false; MsgSuccess(i18n.global.t('commons.msg.operationSuccess')); emit('search'); drawerVisiable.value = false;