Skip to content

Commit

Permalink
(feat) Added support for translations on form navigation links labels (
Browse files Browse the repository at this point in the history
  • Loading branch information
icrc-psousa authored Feb 19, 2024
1 parent 2d5aecf commit e32fbaa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<a *ngIf="i > 0" (click)="tabSelected(i - 1)" class="nav-link">
<label class="nav-label">{{ 'previous' | translate }}</label>
<span class="nav-link-text">{{
node.question.questions[i - 1].label
node.question.questions[i - 1].label | translate
}}</span>
</a>
</button>
Expand All @@ -44,7 +44,7 @@
>
<label class="nav-label">{{ 'next' | translate }}</label>
<span class="nav-link-text">{{
node.question.questions[i + 1].label
node.question.questions[i + 1].label | translate
}}</span>
</a>
</button>
Expand Down

0 comments on commit e32fbaa

Please sign in to comment.