I am using angular2 and for drop downs. Whenever a do a search in the drop down and listed items matching criteria highlights the text searched for and on click of which it does not get selected item in the drop down. When you select any other text apart from searched text in the item listed, it gets selected. What causes this behaviour?
Code is as mentioned:
<ng-select [items]="tests"
(data)="updateSelected($event')"
[active]="selectChannel"
id="channelList{{tabId}}"
style="float: left; width: 70%;">
</ng-select>