Skip to content

Commit

Permalink
fix(settings): Allow toggling features when there are more than one
Browse files Browse the repository at this point in the history
  • Loading branch information
sephrat committed Apr 25, 2022
1 parent 1a0823c commit a373359
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div *ngFor="let feature of features">
<div class="row">
<div class="col-1">
<mat-slide-toggle [checked]="feature.enabled" (change)="updateFeature($event, feature)" id="enable"></mat-slide-toggle>
<mat-slide-toggle [checked]="feature.enabled" (change)="updateFeature($event, feature)" id="enable{{feature.name}}"></mat-slide-toggle>
</div>
<div class="col-2">
<h3>{{feature.name}}</h3>
Expand All @@ -17,4 +17,4 @@ <h3>{{feature.name}}</h3>
</div>
</div>
</div>
</div>
</div>

0 comments on commit a373359

Please sign in to comment.