fix: Fixed missing redirect after installing runtime environment (#11243)

This commit is contained in:
CityFun
2025-12-08 04:44:36 +00:00
committed by GitHub
parent d2b030e698
commit ec37af2f18
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -39,6 +39,7 @@ type AppItem struct {
Tags []string `json:"tags"`
GpuSupport bool `json:"gpuSupport"`
Recommend int `json:"recommend"`
Type string `json:"type"`
}
type TagDTO struct {
+1
View File
@@ -125,6 +125,7 @@ func (a AppService) PageApp(ctx *gin.Context, req request.AppSearch) (*response.
GpuSupport: ap.GpuSupport,
Recommend: ap.Recommend,
Description: ap.GetDescription(ctx),
Type: ap.Type,
}
appDTOs = append(appDTOs, appDTO)
tags, err := getAppTags(ap.ID, lang)