mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-22 08:00:53 +00:00
fix: Dealing with some issues (#8511)
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user