mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-03-14 01:34:47 +08:00
fix: 解决本地应用删除版本文件夹,页面版本没有删除的问题 (#1510)
This commit is contained in:
parent
46495937b1
commit
b780df96af
@ -470,9 +470,13 @@ func (a AppService) SyncAppListFromLocal() {
|
|||||||
oldDetail, exist := appDetails[version]
|
oldDetail, exist := appDetails[version]
|
||||||
if exist {
|
if exist {
|
||||||
newDetail.ID = oldDetail.ID
|
newDetail.ID = oldDetail.ID
|
||||||
|
delete(appDetails, version)
|
||||||
}
|
}
|
||||||
app.Details[i] = newDetail
|
app.Details[i] = newDetail
|
||||||
}
|
}
|
||||||
|
for _, v := range appDetails {
|
||||||
|
app.Details = append(app.Details, v)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
app.TagsKey = append(app.TagsKey, constant.AppResourceLocal)
|
app.TagsKey = append(app.TagsKey, constant.AppResourceLocal)
|
||||||
apps[app.Key] = app
|
apps[app.Key] = app
|
||||||
|
Loading…
x
Reference in New Issue
Block a user