1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-19 08:19:15 +08:00

fix: 解决网站设置 HTTPS 证书显示错误的问题 (#1629)

Refs https://github.com/1Panel-dev/1Panel/issues/1626
This commit is contained in:
zhengkunwang 2023-07-12 21:17:16 +08:00 committed by GitHub
parent dfcef390d0
commit 05004cb141
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -222,7 +222,16 @@ const listSSL = () => {
ListSSL(sslReq).then((res) => {
ssls.value = res.data || [];
if (ssls.value.length > 0) {
let exist = false;
for (const ssl of ssls.value) {
if (ssl.id === form.websiteSSLId) {
exist = true;
break;
}
}
if (!exist) {
form.websiteSSLId = ssls.value[0].id;
}
changeSSl(form.websiteSSLId);
} else {
websiteSSL.value = {};