tgd-frontend/src/app/admin/components/featureflags/featureflags.component.html

7 lines
No EOL
300 B
HTML

<div class="m-2 featureflags">
<div class="form-group" *ngFor="let item of features">
<input class="form-check-input" type="checkbox" [checked]="item.state" [id]="item.name" (click)="setFeatureFlag(item.name)"/>
<label [for]="item.name">{{ item.name}}</label>
</div>
</div>