fix(canvas): raise minimum text size in Legend + WorkspaceNode (UX Audit Run 6) - #30
Merged
Merged
Conversation
…eet WCAG readability UX Audit Run 6 critical finding: Legend panel and workspace node cards used 8px and 9px text (6–7pt), which is physically unreadable and fails WCAG minimum guidelines. - Legend.tsx: raise all text-[8px]/[9px]/[10px] → text-[11px] across every sub-component (StatusItem labels, TierItem badge+label, CommItem icon+label, section headers) - WorkspaceNode.tsx: raise text-[8px]/[9px] → text-[10px] for all readable labels in the main card (status text, skill badges, task/error banners, tier badge, sub count, Team Members header) and TeamMemberChip primary name/role text Compact 7px elements inside TeamMemberChip (tier/sub badges, status micropills) retained to preserve dense canvas layout — only human-readable labels were upgraded. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
Author
|
7-gate verification PASS.
Merging. |
HongmingWang-Rabbit
pushed a commit
that referenced
this pull request
Apr 14, 2026
Adds a `canvas-deploy-reminder` job to ci.yml that fires on every push to main once `canvas-build` passes. It posts a commit comment via the built-in GITHUB_TOKEN (no new secrets needed) reminding whoever monitors CI to run: cd /g/personal_programs/molecule-monorepo git pull origin main docker compose build canvas && docker compose up -d canvas The comment includes the commit SHA and a direct link to the build log. Rationale: 5 consecutive merge cycles (PRs #21, #25, #30, #32, #34) went undeployed because there is no auto-deploy hook and the manual step was silently forgotten. A commit comment on the merge commit is the lowest-friction reminder that requires no external secrets or infra. Does NOT run on PRs — only on direct pushes to main (i.e. post-merge). Uses `needs: canvas-build` so the reminder only fires after build+tests pass; a failing build produces no comment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This was referenced Apr 14, 2026
molecule-ai Bot
pushed a commit
that referenced
this pull request
Apr 21, 2026
fix(canvas): raise minimum text size in Legend + WorkspaceNode (UX Audit Run 6)
molecule-ai Bot
pushed a commit
that referenced
this pull request
Apr 21, 2026
Adds a `canvas-deploy-reminder` job to ci.yml that fires on every push to main once `canvas-build` passes. It posts a commit comment via the built-in GITHUB_TOKEN (no new secrets needed) reminding whoever monitors CI to run: cd /g/personal_programs/molecule-monorepo git pull origin main docker compose build canvas && docker compose up -d canvas The comment includes the commit SHA and a direct link to the build log. Rationale: 5 consecutive merge cycles (PRs #21, #25, #30, #32, #34) went undeployed because there is no auto-deploy hook and the manual step was silently forgotten. A commit comment on the merge commit is the lowest-friction reminder that requires no external secrets or infra. Does NOT run on PRs — only on direct pushes to main (i.e. post-merge). Uses `needs: canvas-build` so the reminder only fires after build+tests pass; a failing build produces no comment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
text-[8px]/[9px]/[10px]raised totext-[11px]across every sub-component: StatusItem labels, TierItem badge + label, CommItem icon + label, section headers (Status / Tier / Communication / Legend)text-[8px]/[9px]readable labels raised totext-[10px]in the main card (status text, tier badge, skill badges, task/error banners, sub-count badge, Team Members header) and TeamMemberChip primary name + role texttext-[7px]elements inside TeamMemberChip (tier/sub badges, status micropills) retained — they are non-readable decorative indicators, not human-legible textRoot cause: UX Audit Run 6 live-HTML scan found 17×
text-[8px](6pt), 8×text-[9px], and 10×text-[10px]in the Legend panel — below WCAG minimum readable size of ~11px.Test plan
cd canvas && npm test --run→ 365/365 tests passtext-[8px]ortext-[9px]in Legend.tsx (verified via grep)text-[8px]ortext-[9px]in WorkspaceNode.tsx (verified via grep)'use client'present, no secrets)🤖 Generated with Claude Code