diff --git a/projects/components/src/combo-box/combo-box.component.ts b/projects/components/src/combo-box/combo-box.component.ts index 1d91f7da9..9eaccd4c0 100644 --- a/projects/components/src/combo-box/combo-box.component.ts +++ b/projects/components/src/combo-box/combo-box.component.ts @@ -445,6 +445,7 @@ export class ComboBoxComponent implements AfterViewInit, OnChan public writeValue(text?: string): void { this.text = text; + this.changeDetectorRef.markForCheck(); } public registerOnChange(onChange: (value?: string) => void): void {