From 84f1f19e0934b427b534f0055274102e53565861 Mon Sep 17 00:00:00 2001 From: Venkatreddy KP Date: Sat, 14 Oct 2023 15:44:48 +0530 Subject: [PATCH] add release name to get apps config --- server/pkg/api/app_config_mapping.go | 1 + 1 file changed, 1 insertion(+) diff --git a/server/pkg/api/app_config_mapping.go b/server/pkg/api/app_config_mapping.go index 421d91e5..2d34dbd4 100644 --- a/server/pkg/api/app_config_mapping.go +++ b/server/pkg/api/app_config_mapping.go @@ -9,6 +9,7 @@ func mapAgentAppsToServerResp(appDataList []*agentpb.AppData) []*serverpb.Cluste clusterAppConfigs := make([]*serverpb.ClusterAppConfig, len(appDataList)) for index, appConfig := range appDataList { var clusterAppConfig serverpb.ClusterAppConfig + clusterAppConfig.ReleaseName = appConfig.Config.ReleaseName clusterAppConfig.AppName = appConfig.Config.AppName clusterAppConfig.Version = appConfig.Config.Version clusterAppConfig.Category = appConfig.Config.Category