chore: v2 - facelift for runview run details#2520
Merged
Mbeaulne merged 1 commit intoJul 15, 2026
Merged
Conversation
This was referenced Jul 14, 2026
🎩 PreviewA preview build has been created at: |
Collaborator
Author
This was referenced Jul 14, 2026
Mbeaulne
approved these changes
Jul 14, 2026
Collaborator
09b1e46 to
5611b26
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Description
Redesigns the Run Details panel to use collapsible sections, matching the layout pattern already used in the Pipeline Details panel. The panel now has a sticky
RunDetailsHeadercomponent at the top displaying the pipeline name and a status bar, followed by a scrollable area containing collapsible sections for Run Info, Details (description, tags, annotations, notes), Arguments, and Outputs.To support rendering only inputs or only outputs without their own
ContentBlockwrapper,PipelineIOgains an optionalsectionprop ("inputs"|"outputs"). When provided, it renders just that half of the IO content so that the caller's collapsible section can act as the header.PipelineDetailsCollapsibleSectionhas been moved from thePipelineDetailsContentcomponent folder tosrc/routes/v2/shared/components/so it can be shared between the Editor and Run View panels.Related Issue and Pull requests
Type of Change
Checklist
Screenshots (if applicable)
Test Instructions
PipelineIOusing the newsectionprop.PipelineDetailsCollapsibleSection.Additional Comments
The
RunInfoSectiontitle has been removed from theKeyValueListsince the collapsible section heading now serves that purpose.