From e35d0c9aeda23afa8b69de552fe36dd5d7ef49b0 Mon Sep 17 00:00:00 2001 From: zhengkunwang <31820853+zhengkunwang223@users.noreply.github.com> Date: Tue, 31 Oct 2023 20:47:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96=E8=AF=81=E4=B9=A6?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=E8=B6=85=E6=97=B6=E9=97=AE=E9=A2=98=20(#2742?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs https://github.com/1Panel-dev/1Panel/issues/2447 --- frontend/src/api/modules/website.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/api/modules/website.ts b/frontend/src/api/modules/website.ts index 6162163ef..c0e2e7ce2 100644 --- a/frontend/src/api/modules/website.ts +++ b/frontend/src/api/modules/website.ts @@ -101,7 +101,7 @@ export const ListSSL = (req: Website.SSLReq) => { }; export const CreateSSL = (req: Website.SSLCreate) => { - return http.post(`/websites/ssl`, req, TimeoutEnum.T_60S); + return http.post(`/websites/ssl`, req, TimeoutEnum.T_10M); }; export const DeleteSSL = (req: Website.DelReq) => {