form field validation (much better error messages)

This commit is contained in:
jonaswinkler 2021-01-03 13:09:16 +01:00
parent e05f365e6a
commit a96ab9a9a4
16 changed files with 102 additions and 30 deletions

View file

@ -30,6 +30,9 @@ export class AbstractInputComponent<T> implements OnInit, ControlValueAccessor {
@Input()
disabled = false;
@Input()
error: string
value: T
ngOnInit(): void {