[ACA-1270] delete confirmation dialog strings (#294)

* delete confirmation dialog strings

* upgrade to latest adf with dialog fixes
This commit is contained in:
Denys Vuika
2018-04-11 07:22:01 +01:00
committed by Cilibiu Bogdan
parent 077366bd7e
commit 176ee2c5cc
4 changed files with 16 additions and 30 deletions

View File

@@ -46,7 +46,9 @@ export class NodePermanentDeleteDirective {
const dialogRef = this.dialog.open(ConfirmDialogComponent, {
data: {
title: 'APP.DIALOGS.CONFIRM_PURGE.TITLE',
message: 'APP.DIALOGS.CONFIRM_PURGE.MESSAGE'
message: 'APP.DIALOGS.CONFIRM_PURGE.MESSAGE',
yesLabel: 'APP.DIALOGS.CONFIRM_PURGE.YES_LABEL',
noLabel: 'APP.DIALOGS.CONFIRM_PURGE.NO_LABEL'
},
minWidth: '250px'
});