Skip to content

Commit

Permalink
Fix language name if no english name is given.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed May 13, 2024
1 parent df06d0f commit 4a4118a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<div class="col">
<select class="form-select fallback-select" [(ngModel)]="otherLanguage" name="otherLanguage">
<option *ngFor="let otherLanguage of fallbackLanguagesNew; trackBy: trackByLanguage" [ngValue]="otherLanguage">
{{otherLanguage.englishName}}
{{otherLanguage.englishName || otherLanguage.iso2Code}}
</option>
</select>
</div>
Expand Down

0 comments on commit 4a4118a

Please sign in to comment.