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