Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cdk/dialog/dialog-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class DialogConfig<D = unknown, R = unknown, C extends BasePortalOutlet =
/** Min-height of the dialog. If a number is provided, assumes pixel units. */
minHeight?: number | string;

/** Max-width of the dialog. If a number is provided, assumes pixel units. Defaults to 80vw. */
/** Max-width of the dialog. If a number is provided, assumes pixel units. */
maxWidth?: number | string;

/** Max-height of the dialog. If a number is provided, assumes pixel units. */
Expand Down
2 changes: 1 addition & 1 deletion src/material/dialog/dialog-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class MatDialogConfig<D = any> {
/** Min-height of the dialog. If a number is provided, assumes pixel units. */
minHeight?: number | string;

/** Max-width of the dialog. If a number is provided, assumes pixel units. Defaults to 80vw. */
/** Max-width of the dialog. If a number is provided, assumes pixel units. */
maxWidth?: number | string;

/** Max-height of the dialog. If a number is provided, assumes pixel units. */
Expand Down
Loading