Skip to content

Commit

Permalink
Fix Confirmdialog defaultFocus type
Browse files Browse the repository at this point in the history
  • Loading branch information
DDOF authored Nov 7, 2023
1 parent 97876b9 commit 80fcd14
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

0 comments on commit 80fcd14

Please sign in to comment.