Skip to content

Commit

Permalink
Merge pull request #14045 from DDOF/confirmdialog-defaultFocus
Browse files Browse the repository at this point in the history
Fix Confirmdialog defaultFocus type
  • Loading branch information
cetincakiroglu authored Nov 8, 2023
2 parents 97876b9 + 80fcd14 commit 31e4f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/confirmdialog/confirmdialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ export class ConfirmDialog implements AfterContentInit, OnInit, OnDestroy {
* Element to receive the focus when the dialog gets visible.
* @group Props
*/
@Input() defaultFocus: 'accept' | 'reject' | 'close' = 'accept';
@Input() defaultFocus: 'accept' | 'reject' | 'close' | 'none' = 'accept';
/**
* Object literal to define widths per screen size.
* @group Props
Expand Down

1 comment on commit 31e4f0b

@vercel
Copy link

@vercel vercel bot commented on 31e4f0b Nov 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.