We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27a1f6c commit bfa5862Copy full SHA for bfa5862
src/elm/Build.elm
@@ -353,7 +353,11 @@ recentBuild now timezone org repo build idx =
353
icon =
354
recentBuildStatusToIcon build.status idx
355
in
356
- a [ class "-build", Routes.href <| Routes.Build org repo <| String.fromInt build.number ]
+ a
357
+ [ class "-build"
358
+ , Routes.href <| Routes.Build org repo <| String.fromInt build.number
359
+ , attribute "aria-label" <| "go to previous build number " ++ String.fromInt build.number
360
+ ]
361
[ icon |> SvgBuilder.toHtml [ attribute "aria-hidden" "true" ] []
362
, div [ class "-tooltip", Util.testAttribute "build-history-tooltip" ]
363
[ div [ class "-info" ]
0 commit comments