Skip to content

Commit

Permalink
Fixed #13469 - Refactor condition
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Aug 10, 2023
1 parent a613dd5 commit a52eb68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/panelmenu/panelmenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ import { ObjectUtils, UniqueComponentId } from 'primeng/utils';
<ng-template ngFor let-processedItem let-index="index" [ngForOf]="items">
<li *ngIf="processedItem.separator" class="p-menuitem-separator" role="separator"></li>
<li
*ngIf="!processedItem.separator"
*ngIf="!processedItem.separator && isItemVisible(processedItem)"
class="p-menuitem"
role="treeitem"
[id]="getItemId(processedItem)"
Expand Down

0 comments on commit a52eb68

Please sign in to comment.