diff --git a/dashboard/sharedComponents/input/input.component.ts b/dashboard/sharedComponents/input/input.component.ts index 09a3e6e0..fa414df6 100644 --- a/dashboard/sharedComponents/input/input.component.ts +++ b/dashboard/sharedComponents/input/input.component.ts @@ -49,6 +49,7 @@ export interface Option { {{formControl.errors.error}} + {{warning}} {{label}} @@ -68,6 +69,7 @@ export class InputComponent implements OnInit, OnDestroy, OnChanges { @Input() hideControl: boolean = false; @Input() icon: string = null; @Input() iconLeft: boolean = false; + @Input() warning: string = null; public required: boolean = false; private initValue: any; private subscriptions: any[] = [];