fix: improve sidebar agent card layout - full name visibility#142
Merged
khaliqgant merged 2 commits intomainfrom Jan 11, 2026
Merged
fix: improve sidebar agent card layout - full name visibility#142khaliqgant merged 2 commits intomainfrom
khaliqgant merged 2 commits intomainfrom
Conversation
added 2 commits
January 11, 2026 18:05
When listTrajectorySteps() is called without a trajectoryId parameter, it now collects and returns steps from ALL active trajectories instead of just the first one found. Steps are merged and sorted chronologically across all trajectories. Changes: - Modified trajectory paths collection to use array instead of single variable - Loop through ALL active trajectories, not just breaking after first - Merge steps from all loaded trajectories - Sort merged steps chronologically by timestamp - Update comments to clarify behavior Fixes issue where dashboard was only showing steps from a single trajectory.
Move agent name to its own line with proper wrapping to prevent truncation.
Actions and status indicators now appear on a second line below the agent name,
reducing visual crowding in the sidebar.
Changes:
- Change flex alignment from items-center to items-start
- Remove truncate from agent name, add whitespace-normal and break-words
- Add flex-wrap to name container for proper text flow
- Reposition actions/status below name section
- Improves name visibility and reduces visual clutter
Fixes issue where agent names were truncated ('Le...' instead of full name)
and buttons were cramped on the same line.
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.
Summary
Changes
items-centertoitems-starttruncatefrom agent name, addwhitespace-normalandbreak-wordsflex-wrapto name container for proper text flowBefore
Agent names were truncated (showing "Le..." instead of full name) with buttons cramped on the same line.
After
Full agent names are visible with proper wrapping, actions/status indicators on second line below name.
Testing
🤖 Generated with Claude Code
Co-Authored-By: SidebarFixer noreply@anthropic.com