Skip to content

Commit

Permalink
fix(dialog): renderIn optional
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanWalker committed Jul 18, 2024
1 parent 5df1888 commit b9a3763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular/src/lib/cdk/dialog/dialog-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class NativeDialogConfig<D = any> {
viewContainerRef?: ViewContainerRef;

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

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

0 comments on commit b9a3763

Please sign in to comment.