Skip to content

Commit

Permalink
Merge pull request #16019 from ymg2006/Table-columnFilter
Browse files Browse the repository at this point in the history
fixes #15937 Table: columnFilter
  • Loading branch information
cetincakiroglu authored Jul 18, 2024
2 parents 8c11720 + 6334715 commit 8446c5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/table/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5208,7 +5208,7 @@ export class ReorderableRow implements AfterViewInit {
<ng-template *ngTemplateOutlet="addRuleIconTemplate"></ng-template>
</button>
</div>
<div class="p-column-filter-buttonbar">
<div class="p-column-filter-buttonbar" *ngIf="showButtons">
<button #clearBtn *ngIf="showClearButton" type="button" pButton class="p-button-outlined p-button-sm" (click)="clearFilter()" [attr.aria-label]="clearButtonLabel" [label]="clearButtonLabel" pRipple></button>
<button *ngIf="showApplyButton" type="button" pButton (click)="applyFilter()" class="p-button-sm" [label]="applyButtonLabel" pRipple [attr.aria-label]="applyButtonLabel"></button>
</div>
Expand Down

0 comments on commit 8446c5b

Please sign in to comment.