I created a ngx-bootstrap typeahead component to use as a drop down in an ag-grid application. The problem is the drop down is not filling the cell.
<form [formGroup]="myForm">
<input formControlName="item"
[typeahead]="items"
[typeaheadScrollable]="true"
[typeaheadMinLength]="0"
(focusin)="$event.target.value = ''"
placeholder="Typeahead inside a form"
class="form-control">
</form>