1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +00:00

[SM-410] Fix boolean custom fields not working (#4386)

* Fix boolean custom fields not working
This commit is contained in:
Oscar Hinton
2023-01-05 16:50:19 +01:00
committed by GitHub
parent d3c780e079
commit 049940d04b
4 changed files with 8 additions and 8 deletions

View File

@@ -13,8 +13,8 @@ import { ControlValueAccessor, NG_VALUE_ACCESSOR } from "@angular/forms";
],
})
export class TrueFalseValueDirective implements ControlValueAccessor {
@Input() trueValue = true;
@Input() falseValue = false;
@Input() trueValue: boolean | string = true;
@Input() falseValue: boolean | string = false;
constructor(private elementRef: ElementRef, private renderer: Renderer2) {}