mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[AAE-8740] Fix default ConfirmDialogComponent title (#7665)
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user