Skip to content

Commit

Permalink
more a11y fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
auumgn committed Feb 9, 2024
1 parent ec0c175 commit d282592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/error/error-alert.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<ngb-alert *ngIf="alert && alert.type && alert.msg" [type]="alert.type" [dismissible]="false">
<div class="d-flex">
<p i18n="@@error.subtitle" class="font-size-16 font-weight-bold mr-auto mb-2">Sorry, an error has occurred</p>
<a (click)="close(alert)" (keyup)="closeOldestAlert()" tabindex="0">
<a (click)="close(alert)" (keyup.esc)="closeOldestAlert()" (keyup.enter)="closeOldestAlert()" tabindex="0">
<svg width="12" height="12" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M16 1.61143L14.3886 0L8 6.38857L1.61143 0L0 1.61143L6.38857 8L0 14.3886L1.61143 16L8 9.61143L14.3886 16L16 14.3886L9.61143 8L16 1.61143Z"
Expand Down

0 comments on commit d282592

Please sign in to comment.