Skip to content

Commit 221fbb5

Browse files
authored
Merge pull request #422 from kinfkong/issue-293
fix issue #293
2 parents 2b622d9 + 8ba584f commit 221fbb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/app.component.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export class AppComponent implements OnInit {
125125
}
126126
this.dialogService.open(ConfirmDialogComponent, {
127127
width: '250px', data: {
128-
title: 'Delete Confirm',
128+
title: 'Delete Confirmation',
129129
message: `Are you sure you want to delete this server?`
130130
}
131131
}).afterClosed().subscribe(ret => {
@@ -416,7 +416,7 @@ export class AppComponent implements OnInit {
416416
this.instances$.pipe(take(1)).subscribe((instances) => {
417417
this.dialogService.open(ImportDataDialogComponent, {
418418
width: '560px', data: {
419-
title: 'Delete Confirm',
419+
title: 'Delete Confirmation',
420420
message: `Are you sure you want to delete this server?`,
421421
opType: 'import',
422422
currentInstance: instance,
@@ -434,7 +434,7 @@ export class AppComponent implements OnInit {
434434
this.instances$.pipe(take(1)).subscribe((instances) => {
435435
this.dialogService.open(ImportDataDialogComponent, {
436436
width: '560px', data: {
437-
title: 'Delete Confirm',
437+
title: 'Delete Confirmation',
438438
message: `Are you sure you want to delete this server?`,
439439
opType: 'export',
440440
currentInstance: instance,

0 commit comments

Comments
 (0)