You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#323: row-specific aria-label on Source URL links (Codex review)
Screen-reader users tabbing down the column otherwise hear an
undifferentiated list of identical "record ↗" links.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01AjnkWb4HpuLeDbYfzmY3X9
// tabbing the column hear WHICH record each identical
2688
+
// "record ↗" link opens.
2686
2689
const srcUrlHtml = rowSrcUrl
2687
-
? `<a class="row-source-link" href="${escapeHtml(rowSrcUrl)}" target="_blank" rel="noopener noreferrer" title="Open this sample's record at its source repository">record ↗</a>`
2690
+
? `<a class="row-source-link" href="${escapeHtml(rowSrcUrl)}" target="_blank" rel="noopener noreferrer" title="Open this sample's record at its source repository" aria-label="Open record for ${safeLabel} at its source repository">record ↗</a>`
2688
2691
: '';
2689
2692
// #311: material/context/object_type are URIs (from facets_url,
2690
2693
// joined in loadPage()); resolve to human labels the same way
0 commit comments