diff --git a/app/react/kubernetes/applications/ListView/ApplicationsDatatable/columns.status.tsx b/app/react/kubernetes/applications/ListView/ApplicationsDatatable/columns.status.tsx index 4a3a4c6b8..ddadc4332 100644 --- a/app/react/kubernetes/applications/ListView/ApplicationsDatatable/columns.status.tsx +++ b/app/react/kubernetes/applications/ListView/ApplicationsDatatable/columns.status.tsx @@ -40,23 +40,28 @@ function Cell({ }, ])} /> - {item.DeploymentType === - KubernetesApplicationDeploymentTypes.Replicated && ( - Replicated - )} - {item.DeploymentType === KubernetesApplicationDeploymentTypes.Global && ( - Global - )} - {item.RunningPodsCount >= 0 && item.TotalPodsCount >= 0 && ( - - - {item.RunningPodsCount} - {' '} - /{' '} - - {item.TotalPodsCount} - - + {item.ApplicationType !== KubernetesApplicationTypes.Helm && ( + <> + {item.DeploymentType === + KubernetesApplicationDeploymentTypes.Replicated && ( + Replicated + )} + {item.DeploymentType === + KubernetesApplicationDeploymentTypes.Global && ( + Global + )} + {item.RunningPodsCount >= 0 && item.TotalPodsCount >= 0 && ( + + + {item.RunningPodsCount} + {' '} + /{' '} + + {item.TotalPodsCount} + + + )} + )} {item.KubernetesApplications && {item.Status}}