diff --git a/src/typeahead/typeahead.directive.ts b/src/typeahead/typeahead.directive.ts index 10085c6a7b..362d5aefc8 100644 --- a/src/typeahead/typeahead.directive.ts +++ b/src/typeahead/typeahead.directive.ts @@ -233,7 +233,7 @@ export class TypeaheadDirective implements OnInit, OnDestroy { onFocus(): void { if (this.typeaheadMinLength === 0) { this.typeaheadLoading.emit(true); - this.keyUpEventEmitter.emit(''); + this.keyUpEventEmitter.emit(this.element.nativeElement.value || ''); } }