ghostfolio/apps/client/src/app/components/toggle/toggle.component.html
Thomas Kaul 747e5b63fa
Feature/restructure allocations page including allocations by symbol (#333)
* Restructure allocations page

* Update changelog
2021-09-03 23:20:30 +02:00

13 lines
269 B
HTML

<mat-radio-group
class="text-nowrap"
[formControl]="option"
(change)="onValueChange()"
>
<mat-radio-button
*ngFor="let option of options"
[disabled]="isLoading"
[value]="option.value"
>{{ option.label }}</mat-radio-button
>
</mat-radio-group>