Keep track of collapsed steps and avoid expanding them automatically#903
Merged
lewisbirks merged 7 commits intojenkinsci:mainfrom Jul 24, 2025
Merged
Keep track of collapsed steps and avoid expanding them automatically#903lewisbirks merged 7 commits intojenkinsci:mainfrom
lewisbirks merged 7 commits intojenkinsci:mainfrom
Conversation
Any user action that collapsed steps is persisted now. This affects the collapsed state when navigating back and forth between stages and refreshes from the steps polling while the job is running.
janfaracik
reviewed
Jul 22, 2025
src/main/frontend/pipeline-console-view/pipeline-console/main/hooks/use-steps-poller.ts
Outdated
Show resolved
Hide resolved
6 tasks
- Reduce polling interval - Remove rerender hack for "run" poller after merging polling changes
Closed
lewisbirks
approved these changes
Jul 24, 2025
Contributor
lewisbirks
left a comment
There was a problem hiding this comment.
LGTM! Thanks for the contributions 🚀
|
Thanks for fixing this, it was driving me crazy 😅 ❤️ |
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.
Fixes #822
Any user action that collapsed steps is persisted now.
This affects the collapsed state when navigating back and forth between
stages and refreshes from the steps polling while the job is running.
Testing done
Details
pipeline { agent any stages { stage('Hello') { steps { script { for(int i=1; i<=10; i++) { stage("Stage - ${i}") { sh 'for i in 1 2 3; do sleep 1; echo "Slept ${i} times"; done' sh 'for i in 4 5 6; do sleep 1; echo "Slept ${i} times"; done' } } } } } } }Submitter checklist