From a0f08ce167321185aa454ff31cd574a8b9f14278 Mon Sep 17 00:00:00 2001 From: Jacob Nichols Date: Wed, 7 May 2025 09:21:50 -0500 Subject: [PATCH] added string to language type --- projects/angular-formio/src/FormioBaseComponent.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/angular-formio/src/FormioBaseComponent.ts b/projects/angular-formio/src/FormioBaseComponent.ts index d57b440f..4bfd5ac0 100644 --- a/projects/angular-formio/src/FormioBaseComponent.ts +++ b/projects/angular-formio/src/FormioBaseComponent.ts @@ -31,7 +31,7 @@ export class FormioBaseComponent implements OnInit, OnChanges, OnDestroy { @Input() error?: EventEmitter; @Input() success?: EventEmitter; @Input() submitDone?: EventEmitter; - @Input() language?: EventEmitter; + @Input() language?: EventEmitter | string; @Input() hooks?: any = {}; @Input() renderer?: any; @Input() watchSubmissionErrors ? = false;