diff --git a/core/app/service/setting.go b/core/app/service/setting.go index dad854347..5062ae2e6 100644 --- a/core/app/service/setting.go +++ b/core/app/service/setting.go @@ -648,7 +648,7 @@ func loadDockerProxy(req dto.ProxyUpdate) string { if len(req.ProxyUser) != 0 { proxyPasswd = req.ProxyPasswd + "@" } - proxyUrl := req.ProxyType + "://" + req.ProxyUser + ":" + proxyPasswd + req.ProxyUrl + req.ProxyPort + proxyUrl := req.ProxyType + "://" + req.ProxyUser + ":" + proxyPasswd + req.ProxyUrl + ":" + req.ProxyPort if req.ProxyType == "http" || req.ProxyType == "https" { req.ProxyUrl = req.ProxyType + "://" + req.ProxyUrl } diff --git a/frontend/src/views/login/components/login-form.vue b/frontend/src/views/login/components/login-form.vue index 9f63d82bc..6c721855d 100644 --- a/frontend/src/views/login/components/login-form.vue +++ b/frontend/src/views/login/components/login-form.vue @@ -512,7 +512,7 @@ onMounted(() => { :deep(.el-checkbox__input .el-checkbox__inner) { background-color: #fff !important; - border-color: #fff !important; + border-color: #e5eefd !important; } :deep(.el-checkbox__input.is-checked .el-checkbox__inner) { @@ -521,7 +521,7 @@ onMounted(() => { } :deep(.el-checkbox__input.is-checked .el-checkbox__inner::after) { - border-color: #fff !important; + border-color: #e5eefd !important; } :deep(.el-input__inner) {