diff --git a/internal/communitymodules/modules.go b/internal/communitymodules/modules.go index 6cd641584..c9c90b3b0 100644 --- a/internal/communitymodules/modules.go +++ b/internal/communitymodules/modules.go @@ -95,7 +95,7 @@ func ManagedModules(client cmdcommon.KubeClientConfig, cfg cmdcommon.KymaConfig) for _, name := range moduleNames { managed[name] = row{ Name: name, - Managed: "Managed", + Managed: "Yes", } } return managed, nil diff --git a/internal/communitymodules/render.go b/internal/communitymodules/render.go index a2049332a..099aaf1e9 100644 --- a/internal/communitymodules/render.go +++ b/internal/communitymodules/render.go @@ -10,7 +10,7 @@ import ( func RenderTableForCollective(raw bool, moduleMap moduleMap) { renderTable(raw, convertRowToCollective(moduleMap), - []string{"NAME", "REPOSITORY", "VERSION INSTALLED", "CONTROL-PLANE"}) + []string{"NAME", "REPOSITORY", "VERSION INSTALLED", "MANAGED"}) } func convertRowToCollective(moduleMap moduleMap) [][]string {