mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-06 13:27:43 +08:00
fix: Dealing with some issues (#8511)
This commit is contained in:
parent
1b8e049ad3
commit
9cc4f25185
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue