fix: Dealing with some issues (#8511)

This commit is contained in:
2025-04-29 16:01:59 +08:00 committed by GitHub
parent 1b8e049ad3
commit 9cc4f25185
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -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
}

View file

@ -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) {