Skip to content

Commit

Permalink
SHIBUI-668: Modifying switch code to include the large font text insi…
Browse files Browse the repository at this point in the history
…de the wizard nav;
  • Loading branch information
Jodie Muramoto committed Aug 9, 2018
1 parent 4e7e517 commit a7274db
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions ui/src/app/wizard/component/wizard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@
</li>
<li class="nav-item">
<h3 class="tag tag-primary">
<span class="index">{{ (current$ | async).index }} </span>
<ng-container [ngSwitch]="currentIcon$ | async">
<ng-container *ngSwitchDefault>{{ (current$ | async).index }}.</ng-container>
<ng-container *ngSwitchCase="icons.CHECK"><i class="fa fa-check"></i></ng-container>
</ng-container>
{{ (current$ | async).label }}
<span class="index">
<ng-container [ngSwitch]="currentIcon$ | async">
<ng-container *ngSwitchDefault>{{ (current$ | async).index }}</ng-container>
<ng-container *ngSwitchCase="icons.CHECK"><i class="fa fa-check"></i></ng-container>
</ng-container>
</span>
{{ (current$ | async).index }}. {{ (current$ | async).label }}
</h3>
</li>
<li class="nav-item" *ngIf="(next$ | async)">
Expand Down

0 comments on commit a7274db

Please sign in to comment.