I have successfully upgraded my project from Angular 9 to Angular 10.
I am using the angular-mention
library to get the username suggestion when typing @
keyword.
Till Angular 8 this feature was working fine but after the upgrade when I am typing @
keyword it is not showing the list of the users.
below is the screenshot of the issue that I am facing.
as in the above picture we can see that list is coming but I am not able to see the username in the list
my component.html file looks like as follows.
<div class="col-12 col-sm-9 col-lg-9">
<input
type="text"
spellcheck="false"
id="userSearch"
class="searchBox"
[mention]="items"
style="background-color: #ffff00"
placeholder="Search user"
style=""
(keypress)="getUserDetails()"
[(ngModel)]="searchText"
/>
</div>
where I am getting items from the typescript file.
can anyone help me with this?
Thanks in Advance!.