Skip to content

Commit

Permalink
Merge pull request #12226 from primefaces/issue-12221
Browse files Browse the repository at this point in the history
Fixed #12221 - TreeSelect: panelClass not working
  • Loading branch information
cetincakiroglu committed Nov 16, 2022
2 parents cdbee45 + cc88241 commit 03cf823
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/treeselect/treeselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,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">
<div #panel class="p-treeselect-panel p-component" [ngStyle]="panelStyle" [class]="panelStyleClass" [ngClass]="panelClass">
<ng-container *ngTemplateOutlet="headerTemplate; context: { $implicit: value, options: options }"></ng-container>
<div class="p-treeselect-header" *ngIf="filter">
<div class="p-treeselect-filter-container">
Expand Down

0 comments on commit 03cf823

Please sign in to comment.