Skip to content

Commit

Permalink
Fix select additional stat when computing more than 20 level up of a …
Browse files Browse the repository at this point in the history
…character
  • Loading branch information
Socolin committed Apr 30, 2024
1 parent 960b090 commit f863eb7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h3>Calcul des stats manquantes</h3>
<div class="form-fields">
<ng-container *ngFor="let stat of stats">
<label>
<input type="radio" [value]="stat" [(ngModel)]="levelsData[level].additionalStat">
<input type="radio" [name]="'additionalStat' + level" [value]="stat" [(ngModel)]="levelsData[level].additionalStat">
{{ stat | translate: 'Misc.Stat' }}
</label>
</ng-container>
Expand Down

0 comments on commit f863eb7

Please sign in to comment.