Skip to content

Commit

Permalink
Fixed #15115 - Component | pDropdown wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmetcetin01140 committed Mar 27, 2024
1 parent 7e17d57 commit cb8a83f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/components/dropdown/dropdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ export class DropdownItem {
<input
#filter
type="text"
role="search"
autocomplete="off"
[value]="_filterValue() || ''"
class="p-dropdown-filter p-inputtext p-component"
Expand All @@ -240,7 +241,7 @@ export class DropdownItem {
</div>
</ng-template>
</div>
<div class="p-dropdown-items-wrapper" [style.max-height]="virtualScroll ? 'auto' : scrollHeight || 'auto'">
<div class="p-dropdown-items-wrapper" [style.max-height]="virtualScroll ? 'auto' : scrollHeight || 'auto'" role="section">
<p-scroller
*ngIf="virtualScroll"
#scroller
Expand Down

0 comments on commit cb8a83f

Please sign in to comment.