fix: Upgrade the element version to 2.9.9 (#9158)

This commit is contained in:
ssongliu 2025-06-18 11:48:57 +08:00 committed by GitHub
parent 4e2f24a8f0
commit 3b37d5ae72
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 6 additions and 6 deletions

View file

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

View file

@ -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",

View file

@ -149,7 +149,7 @@ const loadNodes = async () => {
globalStore.currentNode = 'local';
return;
}
await listNodeOptions()
await listNodeOptions('')
.then((res) => {
if (!res) {
nodes.value = [];

View file

@ -747,7 +747,7 @@ const form = reactive<Cronjob.CronjobInfo>({
dbNameList: [],
retainCopies: 7,
retryTimes: 0,
retryTimes: 3,
timeout: 3600,
timeoutItem: 3600,
timeoutUint: 's',

View file

@ -165,7 +165,7 @@ const loadDetail = (log: string) => {
};
const loadNodes = async () => {
await listNodeOptions()
await listNodeOptions('')
.then((res) => {
if (!res) {
nodes.value = [];