mirror of
https://github.com/mempool/mempool.git
synced 2025-01-09 15:06:54 +01:00
12c99b86b7
refs #510
6 lines
355 B
HTML
6 lines
355 B
HTML
<div [formGroup]="languageForm" class="text-small text-center mt-4">
|
|
<select formControlName="language" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" style="width: 130px;" (change)="changeLanguage()">
|
|
<option *ngFor="let lang of languages" [value]="lang.code">{{ lang.name }}</option>
|
|
</select>
|
|
</div>
|