1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

[PM-11613] Refactor personal-ownership.component to use reactive form (#11440)

* Refactor personal-ownership.component to use reactive form

* Refactor personal-ownership policy component to use base component form control
This commit is contained in:
Brandon Treston
2024-10-16 15:17:23 -04:00
committed by GitHub
parent 6e37047776
commit a72f3a201f

View File

@@ -2,15 +2,7 @@
{{ "personalOwnershipExemption" | i18n }}
</bit-callout>
<div class="form-group">
<div class="form-check">
<input
class="form-check-input"
type="checkbox"
id="enabled"
[formControl]="enabled"
name="Enabled"
/>
<label class="form-check-label" for="enabled">{{ "turnOn" | i18n }}</label>
</div>
</div>
<bit-form-control>
<input type="checkbox" bitCheckbox [formControl]="enabled" id="enabled" />
<bit-label>{{ "turnOn" | i18n }}</bit-label>
</bit-form-control>