Skip to content

Commit 8e69f7b

Browse files
fix(dialog): address feedback to not initialize some dialog config props
1 parent a30dc0b commit 8e69f7b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib/dialog/dialog-config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ export class MatDialogConfig {
5858
height?: string = '';
5959

6060
/** Min-width of the dialog. */
61-
minWidth?: string = '';
61+
minWidth?: string;
6262

6363
/** Min-height of the dialog */
64-
minHeight?: string = '';
64+
minHeight?: string;
6565

6666
/** Max-width of the dialog. */
6767
maxWidth?: string = '80vw';
6868

6969
/** Max-height of the dialog */
70-
maxHeight?: string = '';
70+
maxHeight?: string;
7171

7272
/** Position overrides. */
7373
position?: DialogPosition;

0 commit comments

Comments
 (0)