Skip to content

Commit

Permalink
Fixed #4067
Browse files Browse the repository at this point in the history
  • Loading branch information
Merve7 committed Oct 2, 2017
1 parent 0102b74 commit ff982aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/dropdown/dropdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const DROPDOWN_VALUE_ACCESSOR: any = {
[style.display]="panelVisible ? 'block' : 'none'" [ngStyle]="panelStyle" [class]="panelStyleClass">
<div *ngIf="filter" class="ui-dropdown-filter-container" (input)="onFilter($event)" (click)="$event.stopPropagation()">
<input #filter type="text" autocomplete="off" class="ui-dropdown-filter ui-inputtext ui-widget ui-state-default ui-corner-all" [attr.placeholder]="filterPlaceholder"
(keydown.enter)="$event.preventDefault()" (keydown)="onKeydown($event)">
(keydown.enter)="$event.preventDefault()" (keydown)="onKeydown($event)" [style.width]="style.width" >
<span class="fa fa-search"></span>
</div>
<div #itemswrapper class="ui-dropdown-items-wrapper" [style.max-height]="scrollHeight||'auto'">
Expand Down

0 comments on commit ff982aa

Please sign in to comment.