Browse Source

fix(frontend): 代理检测提交参数修正

Signed-off-by: Myon <[email protected]>
Myon 3 years ago
parent
commit
2a34c6838d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/src/components/ProxyCheckBtn.vue

+ 1 - 1
frontend/src/components/ProxyCheckBtn.vue

@@ -41,7 +41,7 @@ const checkList = ref([]);
 
 const checkProxy = async () => {
   checking.value = true;
-  const [res] = await CommonApi.checkProxy(props.settings);
+  const [res] = await CommonApi.checkProxy({ proxy_settings: props.settings });
   checking.value = false;
   checkList.value = res?.sub_site_status || [];
   show.value = true;