Skip to content

Commit b9a3763

Browse files
committed
fix(dialog): renderIn optional
1 parent 5df1888 commit b9a3763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/angular/src/lib/cdk/dialog/dialog-config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class NativeDialogConfig<D = any> {
2323
viewContainerRef?: ViewContainerRef;
2424

2525
/** Where to render the actual dialog in. By default it renders using the native view of the ViewContainerRef */
26-
renderIn: 'root' | 'viewContainerRef' | View = 'viewContainerRef';
26+
renderIn?: 'root' | 'viewContainerRef' | View = 'viewContainerRef';
2727

2828
/** ID for the dialog. If omitted, a unique one will be generated. */
2929
id?: string;

0 commit comments

Comments
 (0)