Compare commits

...

1 Commits

Author SHA1 Message Date
core-uiux c7f2f9dd97 fix(canvas/settings): WCAG 1.1.1 + 4.1.3 fixes for settings components
sop-tier-check / tier-check (pull_request) Waiting to run
CI / Shellcheck (E2E scripts) (pull_request) Successful in 10s
E2E API Smoke Test / detect-changes (pull_request) Successful in 11s
E2E Chat / detect-changes (pull_request) Successful in 13s
E2E Staging Canvas (Playwright) / detect-changes (pull_request) Successful in 8s
Harness Replays / detect-changes (pull_request) Successful in 8s
Handlers Postgres Integration / detect-changes (pull_request) Successful in 9s
Secret scan / Scan diff for credential-shaped strings (pull_request) Successful in 9s
Runtime PR-Built Compatibility / detect-changes (pull_request) Successful in 12s
gate-check-v3 / gate-check (pull_request) Successful in 9s
security-review / approved (pull_request) Failing after 6s
qa-review / approved (pull_request) Failing after 7s
lint-required-no-paths / lint-required-no-paths (pull_request) Successful in 1m10s
CI / Python Lint & Test (pull_request) Successful in 6m44s
CI / Canvas (Next.js) (pull_request) Successful in 7m23s
Harness Replays / Harness Replays (pull_request) Successful in 7s
Runtime PR-Built Compatibility / PR-built wheel + import smoke (pull_request) Successful in 3s
E2E Chat / E2E Chat (pull_request) Failing after 4m57s
E2E Staging Canvas (Playwright) / Canvas tabs E2E (pull_request) Successful in 8m19s
sop-checklist / all-items-acked (pull_request) [info tier:low] acked: 0/7 — missing: comprehensive-testing, local-postgres-e2e, staging-smoke, +4 — body-unfilled: comprehensive-testing, l
sop-checklist / na-declarations (pull_request) N/A: (none)
Block internal-flavored paths / Block forbidden paths (pull_request) Has been cancelled
CI / Canvas Deploy Reminder (pull_request) Has been cancelled
CI / Platform (Go) (pull_request) Has been cancelled
CI / Detect changes (pull_request) Has been cancelled
CI / all-required (pull_request) Bypassed — runner outage (agent-dev-a)
E2E API Smoke Test / E2E API Smoke Test (pull_request) Bypassed — runner outage (agent-dev-a)
Handlers Postgres Integration / Handlers Postgres Integration (pull_request) Bypassed — runner outage (agent-dev-a)
audit-force-merge / audit (pull_request) Successful in 11s
- TokensTab + OrgTokensTab: add role=alert + aria-live=assertive to
  error state divs (WCAG 4.1.3)
- SecretRow: wrap ✏ and 🗑 emoji in aria-hidden span (WCAG 1.1.1)

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-18 01:07:06 +00:00
3 changed files with 4 additions and 4 deletions
@@ -175,7 +175,7 @@ export function OrgTokensTab() {
)}
{error && (
<div className="px-3 py-2 bg-red-950/40 border border-red-800/50 rounded-lg text-[10px] text-bad">
<div role="alert" aria-live="assertive" className="px-3 py-2 bg-red-950/40 border border-red-800/50 rounded-lg text-[10px] text-bad">
{error}
</div>
)}
+2 -2
View File
@@ -156,7 +156,7 @@ export function SecretRow({ secret, workspaceId }: SecretRowProps) {
className="secret-row__action-btn"
title="Edit"
>
<span aria-hidden="true"></span>
</button>
<button
type="button"
@@ -165,7 +165,7 @@ export function SecretRow({ secret, workspaceId }: SecretRowProps) {
className="secret-row__action-btn secret-row__action-btn--delete"
title="Delete"
>
🗑
<span aria-hidden="true">🗑</span>
</button>
</div>
</div>
+1 -1
View File
@@ -122,7 +122,7 @@ export function TokensTab({ workspaceId }: TokensTabProps) {
)}
{error && (
<div className="px-3 py-2 bg-red-950/40 border border-red-800/50 rounded-lg text-[10px] text-bad">
<div role="alert" aria-live="assertive" className="px-3 py-2 bg-red-950/40 border border-red-800/50 rounded-lg text-[10px] text-bad">
{error}
</div>
)}