Skip to content

Commit

Permalink
Merge pull request #15018 from TaneliTuomola/issue-14980
Browse files Browse the repository at this point in the history
fix #14980 overlay ids
  • Loading branch information
cetincakiroglu committed Mar 19, 2024
2 parents 38dd93a + 1ef71ff commit 5ade9ba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/app/components/calendar/calendar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ export const CALENDAR_VALUE_ACCESSOR: any = {
</ng-template>
<div
#contentWrapper
[attr.id]="panelId"
[class]="panelStyleClass"
[ngStyle]="panelStyle"
[ngClass]="{
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/multiselect/multiselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export class MultiSelectItem {
(onHide)="hide()"
>
<ng-template pTemplate="content">
<div [ngClass]="'p-multiselect-panel p-component'" [ngStyle]="panelStyle" [class]="panelStyleClass">
<div [attr.id]="id + '_list'" [ngClass]="'p-multiselect-panel p-component'" [ngStyle]="panelStyle" [class]="panelStyleClass">
<span
#firstHiddenFocusableEl
role="presentation"
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/treeselect/treeselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const TREESELECT_VALUE_ACCESSOR: any = {
(onHide)="hide($event)"
>
<ng-template pTemplate="content">
<div #panel class="p-treeselect-panel p-component" [ngStyle]="panelStyle" [class]="panelStyleClass" [ngClass]="panelClass">
<div #panel [attr.id]="listId" class="p-treeselect-panel p-component" [ngStyle]="panelStyle" [class]="panelStyleClass" [ngClass]="panelClass">
<span
#firstHiddenFocusableEl
role="presentation"
Expand Down

0 comments on commit 5ade9ba

Please sign in to comment.