diff --git a/ui/src/pages/AppsTab/AppsTab.tsx b/ui/src/pages/AppsTab/AppsTab.tsx index 7f698a04..ecb7e0fe 100644 --- a/ui/src/pages/AppsTab/AppsTab.tsx +++ b/ui/src/pages/AppsTab/AppsTab.tsx @@ -39,6 +39,7 @@ import type { ApplicationConfig, TapDefinition } from '../../api/queries/command import { useCatalog } from '../../api/queries/catalog'; import type { CatalogApp, CatalogRoute } from '../../api/queries/catalog'; import { DeploymentProgress } from '../../components/DeploymentProgress'; +import { StartupLogPanel } from '../../components/StartupLogPanel'; import { timeAgo } from '../../utils/format-utils'; import { applyTracedProcessorUpdate, applyRouteRecordingUpdate } from '../../utils/config-draft-utils'; import { PageLoader } from '../../components/PageLoader'; @@ -771,10 +772,11 @@ function OverviewSubTab({ app, deployments, versions, environments, envMap, sele : columns={deploymentColumns} data={deploymentRows} flush /> } - {deployments.filter((d) => d.deployStage).map((d) => ( + {deployments.filter((d) => d.deployStage || d.status === 'FAILED').map((d) => (
{d.containerName} + e.id === d.environmentId)?.slug ?? ''} />
))}