fix(dashboard): make targets table scroll on mobile#1346
Open
christso wants to merge 1 commit into
Open
Conversation
Deploying agentv with
|
| Latest commit: |
cae517e
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://7d9b00ad.agentv.pages.dev |
| Branch Preview URL: | https://fix-dashboard-targets-mobile.agentv.pages.dev |
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
Targets on phone-width Dashboard views no longer hide the right-side metrics behind a clipped table. The Targets summary now uses the same mobile-safe table treatment as existing run detail tables: a stable minimum width inside a horizontal overflow container, so users can scroll from target names through pass rate, eval counts, and execution errors while desktop continues to fill the available width.
Verification
cd apps/dashboard && bun run buildbun --filter @agentv/dashboard testbunx biome check apps/dashboard/src/components/TargetsTab.tsxbun run verifybun apps/cli/src/cli.ts dashboard --port 3128at/projects/financial-research-agent?tab=targetsEvidence
/tmp/agentv-evidence/targets-mobile-red.png— columns after Pass Rate are clipped in the non-scrollable table./tmp/agentv-evidence/targets-mobile-green-left.pngand/tmp/agentv-evidence/targets-mobile-green-scrolled.png— horizontal scrollbar is visible and the right-side Evals / Execution Errors columns are reachable./tmp/agentv-evidence/targets-desktop-green.png— table still fills the desktop content area without horizontal scrolling.