mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-01-03 21:52:14 +08:00
fix: Upgrade the element version to 2.9.9 (#9158)
This commit is contained in:
parent
4e2f24a8f0
commit
3b37d5ae72
5 changed files with 6 additions and 6 deletions
|
|
@ -144,14 +144,14 @@ func (c Client) NetworkExist(name string) bool {
|
|||
func CreateDefaultDockerNetwork() error {
|
||||
cli, err := NewClient()
|
||||
if err != nil {
|
||||
global.LOG.Errorf("init docker client error %s", err.Error())
|
||||
global.LOG.Warnf("init docker client error %s", err.Error())
|
||||
return err
|
||||
}
|
||||
|
||||
defer cli.Close()
|
||||
if !cli.NetworkExist("1panel-network") {
|
||||
if err := cli.CreateNetwork("1panel-network"); err != nil {
|
||||
global.LOG.Errorf("create default docker network error %s", err.Error())
|
||||
global.LOG.Warnf("create default docker network error %s", err.Error())
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@
|
|||
"codemirror": "^6.0.1",
|
||||
"crypto-js": "^4.2.0",
|
||||
"echarts": "^5.5.0",
|
||||
"element-plus": "^2.9.7",
|
||||
"element-plus": "^2.9.9",
|
||||
"fit2cloud-ui-plus": "^1.2.2",
|
||||
"highlight.js": "^11.9.0",
|
||||
"js-base64": "^3.7.7",
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@ const loadNodes = async () => {
|
|||
globalStore.currentNode = 'local';
|
||||
return;
|
||||
}
|
||||
await listNodeOptions()
|
||||
await listNodeOptions('')
|
||||
.then((res) => {
|
||||
if (!res) {
|
||||
nodes.value = [];
|
||||
|
|
|
|||
|
|
@ -747,7 +747,7 @@ const form = reactive<Cronjob.CronjobInfo>({
|
|||
dbNameList: [],
|
||||
|
||||
retainCopies: 7,
|
||||
retryTimes: 0,
|
||||
retryTimes: 3,
|
||||
timeout: 3600,
|
||||
timeoutItem: 3600,
|
||||
timeoutUint: 's',
|
||||
|
|
|
|||
|
|
@ -165,7 +165,7 @@ const loadDetail = (log: string) => {
|
|||
};
|
||||
|
||||
const loadNodes = async () => {
|
||||
await listNodeOptions()
|
||||
await listNodeOptions('')
|
||||
.then((res) => {
|
||||
if (!res) {
|
||||
nodes.value = [];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue