Make task-detail PR numbers open their GitHub pull request when a URL is present.
- Render the PR number as a secure external link when prInfo.url is available.
- Keep the existing plain text PR number fallback when no URL is present.
- Add focus/hover styling, dashboard documentation, regression tests, and a patch changeset.
Files changed:
.changeset/fn-7183-pr-number-link.md | 7 +++++++
docs/dashboard-guide.md | 1 +
packages/dashboard/app/components/PrPanel.css | 13 ++++++++++++
packages/dashboard/app/components/PrPanel.tsx | 12 ++++++++++-
.../app/components/__tests__/PrPanel.test.tsx | 24 ++++++++++++++++++++++
5 files changed, 56 insertions(+), 1 deletion(-)
Fusion-Task-Id: FN-7183
Fusion-Task-Lineage: 0a349723-9dda-4784-b747-b140b85a3013
Co-authored-by: Fusion (runfusion.ai) <noreply@runfusion.ai>
Adds padding expansion to the PR notice block in PrPanel.css with corresponding test assertions to verify the token values, completing the FN-5619 styling pass.
Fusion-Task-Id: FN-5619
Co-authored-by: Fusion (runfusion.ai) <noreply@runfusion.ai>
Fusion-Task-Id: FN-5619
- Broaden mobile media query to include (max-height: 480px) so landscape
phones (which exceed 768 CSS px wide) still render the bottom nav and
mobile board layout instead of desktop horizontally-scrollable columns.
- Guard useMobileKeyboard against pinch-zoom (vv.scale > 1) — Android
Chrome ignores user-scalable=no, and a focused textarea + zoom was
false-positiving keyboard-open and hiding MobileNavBar.
- Read documentElement.clientHeight instead of stale window.innerHeight
when computing keyboard overlap (Android multi-window can leave
innerHeight cached at a wildly different value than the actual layout
viewport — observed 2848 while html was 797).
- Add interactive-widget=resizes-content to the viewport meta so Android
Chrome shrinks the layout viewport with the soft keyboard, matching iOS.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>