From 1287952387efcaf695942820cbdf789e0513f495 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Tue, 14 Apr 2026 23:24:08 +0200 Subject: [PATCH] feat: show startup logs panel below deployment progress Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/src/pages/AppsTab/AppsTab.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 ?? ''} />
))}