File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export class DialogDemo {
21
21
dialogRef : MatDialogRef < JazzDialog > | null ;
22
22
lastAfterClosedResult : string ;
23
23
lastBeforeCloseResult : string ;
24
- actionsAlignment : 'end ' | 'center' | undefined ;
24
+ actionsAlignment : 'start ' | 'center' | 'end' ;
25
25
config = {
26
26
disableClose : false ,
27
27
panelClass : 'custom-overlay-pane-class' ,
@@ -177,7 +177,7 @@ export class JazzDialog {
177
177
` ,
178
178
} )
179
179
export class ContentElementDialog {
180
- actionsAlignment : 'end ' | 'center' | undefined ;
180
+ actionsAlignment : 'start ' | 'center' | 'end' ;
181
181
182
182
constructor ( public dialog : MatDialog ) { }
183
183
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export class DialogDemo {
29
29
dialogRef : MatDialogRef < JazzDialog > | null ;
30
30
lastAfterClosedResult : string ;
31
31
lastBeforeCloseResult : string ;
32
- actionsAlignment : string ;
32
+ actionsAlignment : 'start' | 'center' | 'end' ;
33
33
config = {
34
34
disableClose : false ,
35
35
panelClass : 'custom-overlay-pane-class' ,
@@ -194,7 +194,7 @@ export class JazzDialog {
194
194
` ,
195
195
} )
196
196
export class ContentElementDialog {
197
- actionsAlignment : string ;
197
+ actionsAlignment : 'start' | 'center' | 'end' ;
198
198
199
199
constructor ( public dialog : MatDialog ) { }
200
200
You can’t perform that action at this time.
0 commit comments