v0.1.37 — feat: add "Jump to live" floating button on pipeline detail page
Release v0.1.37: Jump straight to live logs
During a pipeline run, the real-time logs sit at the bottom of a long page — past the overview, approval gates, features panel, and stage timing. Users had to manually scroll past everything to reach the live feed.
What changed:
- Added a floating "Jump to live" button that appears when the live feed section scrolls out of view during an active pipeline run
- Button includes a pulsing white dot and smooth scroll animation
- Automatically hides when the pipeline completes or when the live feed is already visible
- No schema changes or new dependencies
Why it matters: Operators can now jump directly to real-time output without hunting through the page. The pulsing indicator makes it clear the pipeline is actively running.
Technical notes: Uses IntersectionObserver API to detect live feed visibility. Button respects dark mode and includes proper ARIA labels for accessibility.
Release Notes
Released platform v0.1.37 on 2026-02-26.
PR #451 merged (squash) — "feat: add 'Jump to live' floating button on pipeline detail page" Tag: v0.1.37 Release URL: https://github.com/Jugg-ai/Jugg-ai.jugg-ai/releases/tag/v0.1.37
What shipped:
A new JumpToLiveButton component in src/components/live-pipeline-detail.tsx that renders a fixed floating button in the bottom-right corner of the pipeline detail page. While a pipeline is actively running and the live feed section has scrolled out of the viewport, the button appears (with a pulsing "live" animation) and on click smoothly scrolls the user directly to the real-time log output. The button automatically hides when the live feed is visible or the pipeline reaches a terminal state. No schema changes, no new dependencies, single file changed.