When viewing a pipeline run detail (LivePipelineDetail component), there is a breadcrumb header (BreadcrumbHeader component), but it auto-generates from the URL path segments, showing e.g. 'Dashboard > Pipelines > [UUID]'. The UUID is shown raw — not replaced with a human-readable label. The rendered breadcrumb is the only navigation back, with no explicit back button in the page content itself. Running pipelines are particularly hard to identify by UUID alone.
Category: navigation File: src/components/breadcrumb-header.tsx Recommendation: Extend BreadcrumbHeader's segment replacement logic to also handle pipeline run IDs, replacing the UUID with a human-readable label like the product name + trigger type (e.g. 'Acme App / Feature Request'). This requires a context similar to ProductProvider, or a lightweight lookup. Additionally, add an explicit 'Back to Pipelines' button in the pipeline detail page content.