Skip to content

Commit

Permalink
[AAE-8740] Fix default ConfirmDialogComponent title (#7665)
Browse files Browse the repository at this point in the history
  • Loading branch information
BSekula committed Jun 7, 2022
1 parent d8a4b5b commit 0d96b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/content-services/src/lib/dialogs/confirm.dialog.ts
Expand Up @@ -46,7 +46,7 @@ export class ConfirmDialogComponent {

constructor(@Inject(MAT_DIALOG_DATA) data: ConfirmDialogComponentProps, private sanitizer: DomSanitizer) {
data = data || {};
this.title = data.title || 'ADF_CONFIRM_DIALOG.CONFIRM';
this.title = data.title || 'ADF_CONFIRM_DIALOG.TITLE';
this.message = data.message || 'ADF_CONFIRM_DIALOG.MESSAGE';
this.yesLabel = data.yesLabel || 'ADF_CONFIRM_DIALOG.YES_LABEL';
this.thirdOptionLabel = data.thirdOptionLabel;
Expand Down

0 comments on commit 0d96b44

Please sign in to comment.