feat(web): * for reaquired field
All checks were successful
Build, Test and Deploy / test-backend (push) Successful in 22s
Build, Test and Deploy / build-and-push (push) Successful in 37s
Build, Test and Deploy / deploy (push) Successful in 9s

This commit is contained in:
2026-02-09 18:55:38 +01:00
parent f0e0f57e7c
commit eb4ad8b637
4 changed files with 15 additions and 1 deletions

View File

@@ -22,6 +22,7 @@ export class AppInputComponent implements ControlValueAccessor {
type = input<string>('text');
placeholder = input<string>('');
error = input<string | null>(null);
required = input<boolean>(false);
value: string = '';
disabled = false;