Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/primefaces/primeng
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Feb 14, 2024
2 parents f7cdbf1 + 65bee64 commit b3a6b59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/components/contextmenu/contextmenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ import { ObjectUtils, UniqueComponentId, ZIndexUtils } from 'primeng/utils';
[attr.data-automationid]="getItemProp(processedItem, 'automationId')"
[attr.data-pc-section]="'action'"
[target]="getItemProp(processedItem, 'target')"
[ngClass]="{ 'p-menuitem-link': true, 'p-disabled': getItemProp(processedItem, 'disabled') }"
[ngClass]="{ 'p-menuitem-link': true }"
[attr.tabindex]="-1"
pRipple
>
Expand Down
4 changes: 3 additions & 1 deletion src/app/components/dropdown/dropdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,9 @@ export class Dropdown implements OnInit, AfterViewInit, AfterContentInit, AfterV
return this._filterValue();
}
set filterValue(val: string | undefined | null) {
this._filterValue.set(val);
setTimeout(() => {
this._filterValue.set(val);
});
}
/**
* An array of objects to display as the available options.
Expand Down

0 comments on commit b3a6b59

Please sign in to comment.