Browse Source

Boolean fix in generic host.

pull/604/head
Sebastian 5 years ago
parent
commit
8bde9e6096
  1. 2
      frontend/app/features/rules/pages/rules/actions/generic-action.component.html

2
frontend/app/features/rules/pages/rules/actions/generic-action.component.html

@ -13,7 +13,7 @@
</ng-container>
<ng-container *ngSwitchCase="'Checkbox'">
<div class="custom-control custom-checkbox">
<input class="custom-control-input" type="checkbox" id="{{property.name}}">
<input class="custom-control-input" type="checkbox" id="{{property.name}}" [formControlName]="property.name">
<label class="custom-control-label" for="{{property.name}}">
{{property.display}}
</label>

Loading…
Cancel
Save