Skip to content

Commit

Permalink
Add aria-label for Console History entries.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal committed May 1, 2017
1 parent 1ec46af commit c91abee
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/core_plugins/console/public/src/directives/history.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
ng-mouseenter="history.viewingReq = req"
ng-mouseleave="history.viewingReq = history.selectedReq"
ng-dblclick="history.restore(req)"
title="{{ req.description }}"
aria-label="{{:: 'Request: ' + history.describeReq(req) }}"
class="list-group-item history-req"
>
{{ history.describeReq(req) }}
Expand All @@ -25,7 +25,8 @@
<button
class="kuiButton kuiButton--primary"
ng-disabled="!history.selectedReq"
ng-click="history.restore()">
ng-click="history.restore()"
>
Apply
</button>
</div>

0 comments on commit c91abee

Please sign in to comment.