-
Notifications
You must be signed in to change notification settings - Fork 3.3k
feat: FIT-259: Hide repetitive titles in outliner panels #7832
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: FIT-259: Hide repetitive titles in outliner panels #7832
Conversation
…state is shown or not. The Annotation ID needs to stay in the DOM until we place it in a more accessible location.
✅ Deploy Preview for label-studio-docs-new-theme canceled.
|
✅ Deploy Preview for label-studio-storybook ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for label-studio-playground ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for heartex-docs canceled.
|
hlomzik
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The change is good, thank you!
I'd only revert tests back to use test-ids, that's the preferred way of testing things.
|
/git merge
|
|
/git merge
|
Reason for change
This PR addresses the issue of repetitive titles, "Selection Info" and "Annotation History," appearing in the labeling UI's Info and History panels, respectively. These titles are redundant and clutter the user interface. By hiding these titles, we improve the user experience by making the UI cleaner and more intuitive.
Screenshots
Before

After

Testing
The changes were verified by:
Reviewer notes
The main changes involve applying the
sr-onlyclass to hide the section headers inAnnotationHistory.tsxand removing the "Selection Details" header directly fromDetailsPanel.tsx. The CSS changes inAnnotationHistory.scssare minor styling adjustments.