Browse Source

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

Signed-off-by: Myon <[email protected]>
Myon 3 năm trước cách đây
mục cha
commit
2a34c6838d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;