fix(dashboard): restore GitHub links and model on mobile run cards - #147
Merged
Conversation
Follow-up to the mobile cards: the card was a <button>, so it couldn't wrap the entity/repo GitHub anchors and dropped them entirely (mobile users lost the tap-to-GitHub links the table had). It also only showed the model nested under the agent, hiding it whenever agent was null. Card is now a keyboard-operable clickable div (navigates to detail) with the entity and repo rendered as GitHubLinks again (they stop propagation), and the agent/model line shows whichever of the two is present. Co-authored-by: Cursor <cursoragent@cursor.com>
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ❌ Deployment failed View logs |
jared | 94674a1 | Aug 07 2026, 02:43 PM |
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
Addresses two Bugbot findings on the mobile Agent-runs cards from #146:
<button>, which can't legally wrap the entity/repo<a>links, so mobile lost the tap-to-GitHub that the table had. The card is now a keyboard-operable clickablediv(navigates to detail on click/Enter/Space), and the entity + repo render asGitHubLinks again (they stop propagation, so tapping them opens GitHub while tapping elsewhere opens the run).modelnested inside theagentblock. It now shows whichever ofagent/modelis present ([agent, model].filter(Boolean).join(" · ")), matching the desktop table.Test plan
tsc --noEmitclean,biome checkclean (a11y exception documented with a justifiedbiome-ignore)pnpm buildsucceedsMade with Cursor