Skip to content

Commit

Permalink
feat(material/dialog:MatDialog): change cdk member _dialog from priva…
Browse files Browse the repository at this point in the history
…te to protected (#28019)
  • Loading branch information
dolezaljan committed Oct 29, 2023
1 parent 6719168 commit fe0d98f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/material/dialog/dialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class MatDialog implements OnDestroy {
private readonly _openDialogsAtThisLevel: MatDialogRef<any>[] = [];
private readonly _afterAllClosedAtThisLevel = new Subject<void>();
private readonly _afterOpenedAtThisLevel = new Subject<MatDialogRef<any>>();
private _dialog: Dialog;
protected _dialog: Dialog;
protected dialogConfigClass = MatDialogConfig;

private readonly _dialogRefConstructor: Type<MatDialogRef<any>>;
Expand Down

0 comments on commit fe0d98f

Please sign in to comment.