Add explicit step and aria-current attribute in register form

This commit is contained in:
Caroline Chuong 2020-06-10 17:21:45 +02:00 committed by Rigel Kent
parent f9b6d51f48
commit 1bab226f5c
1 changed files with 2 additions and 2 deletions

View File

@ -2,11 +2,11 @@
<header>
<ng-container *ngFor="let step of steps; let i = index; let isLast = last;">
<div
class="step-info" [ngClass]="{ active: selectedIndex === i, completed: isCompleted(step) }"
class="step-info" [ngClass]="{ active: selectedIndex === i, completed: isCompleted(step) }" [attr.aria-current]="selectedIndex === i"
(click)="onClick(i)"
>
<div class="step-index">
<ng-container *ngIf="!isCompleted(step)">{{ i + 1 }}</ng-container>
<ng-container *ngIf="!isCompleted(step)"><span class="sr-only" i18n>Step</span> {{ i + 1 }}</ng-container>
<my-global-icon *ngIf="isCompleted(step)" iconName="tick"></my-global-icon>
</div>