I can't select text item when searching in the plugin.

here is my code in html
<ng-select
[items]="ticketOptionList.accountList"
(data)="refreshValueforAccount($event)"
(selected)="selectedAccount($event)"
[active] = "initialDataForAccount">
</ng-select>
But when I click the item in blank area it will work
Hi, i got this problem too. We need support.

I found this problem, problem is HighlightPipe alway transform text, so we can't click on this test, we can click select outsite the label and then i fixed by my way.
In file select-pipe.jp, function HighlightPipe.prototype.transform, i added "return value;".
So it's not bold style when we searching but we can select result.
Expect MIT fix this issue.
Thank you.
+1
I seem to have something similar -sometimes I can click on an item (without searching) and sometimes I cannot - it's a very frustrating user experience
I am still getting this issue even after changing select-pipes.js.
+1
Most helpful comment
I found this problem, problem is HighlightPipe alway transform text, so we can't click on this test, we can click select outsite the label and then i fixed by my way.
In file select-pipe.jp, function HighlightPipe.prototype.transform, i added "return value;".
So it's not bold style when we searching but we can select result.
Expect MIT fix this issue.
Thank you.