Skip to content

Commit

Permalink
Fixes #16780
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Nov 22, 2024
1 parent b917bd8 commit 089a01d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/primeng/src/confirmdialog/confirmdialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ const hideAnimation = animation([animate('{{transition}}', style({ transform: '{
@if (footer || footerTemplate) {
<ng-content select="p-footer"></ng-content>
<ng-container *ngTemplateOutlet="footerTemplate"></ng-container>
} @else if (!footer && !footerTemplate) {
}
@if (!footer || !footerTemplate) {
<p-button
*ngIf="option('rejectVisible')"
[label]="rejectButtonLabel"
Expand Down

0 comments on commit 089a01d

Please sign in to comment.