瀏覽代碼

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

Signed-off-by: Myon <[email protected]>
Myon 3 年之前
父節點
當前提交
2a34c6838d
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;