fix: Fixed test units

This commit is contained in:
2025-06-04 16:24:18 +02:00
parent 9f97e584bd
commit c525dfe1c1
39 changed files with 632 additions and 82 deletions

View File

@@ -6,7 +6,7 @@ import { ControlContainer } from '@angular/forms';
})
export class LabelDirective {
@Input() control: string = ""
constructor(@Optional() private parent: ControlContainer) { }
constructor(@Optional() private parent?: ControlContainer) { }
@HostBinding('textContent')
get controlValue() {