You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the Platform's Autocomplete Entry feature and for some reason, it's not taking the styles. I've compared it with other projects where I also use it (and it does work) and everything seems to be the same. What could be happening?
Hello,
I'm using the Platform's Autocomplete Entry feature and for some reason, it's not taking the styles. I've compared it with other projects where I also use it (and it does work) and everything seems to be the same. What could be happening?
<fd-popover class="fd-popover" [triggers]="[]" [isOpen]="open" #typeahead> <fd-popover-control> <fdp-input type="text" id="input-employee-boss" name="autoCompletTextInput" formControlName="employeeBoss" (input)="onSearchChange()"> </fdp-input> </fd-popover-control> <fd-popover-body> <nav class="fd-menu"> <ul fd-menu-list class="fd-menu__list"> @for (option of optionsAD; track option) { <li fd-menu-list-item class="fd-menu__item" (click)="onItemClick(option)"> <span class="fd-menu__link"> {{ option.name }} </span> </li> } </ul> </nav> </fd-popover-body> </fd-popover>
The text was updated successfully, but these errors were encountered: