Skip to content

Commit

Permalink
Fix primefaces#14190 + Fix primefaces#14318: Dropdown: autoDisplayFir…
Browse files Browse the repository at this point in the history
…st=true not working
  • Loading branch information
kra committed Dec 20, 2023
1 parent 3670cae commit 653e824
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 @@ -1078,7 +1078,7 @@ export class Dropdown implements OnInit, AfterViewInit, AfterContentInit, AfterV
if (this.filter) {
this.resetFilter();
}
this.value = value;
this.value = this.modelValue();

this.allowModelChange() && this.onModelChange(value);
this.modelValue.set(this.value);
Expand Down

0 comments on commit 653e824

Please sign in to comment.