fix(angular): attach change detector ref for inline overlays (#24521)

Allow template bindings to update with inline overlays.

Resolves #24502
This commit is contained in:
Sean Perkins
2022-01-06 15:43:51 -05:00
committed by GitHub
parent bd82b5dc1d
commit 5c54593dde
15 changed files with 161 additions and 2 deletions

View File

@ -0,0 +1,14 @@
import { NgModule } from "@angular/core";
import { RouterModule } from "@angular/router";
import { PopoverInlineComponent } from "./popover-inline.component";
@NgModule({
imports: [RouterModule.forChild([
{
path: '',
component: PopoverInlineComponent
}
])],
exports: [RouterModule]
})
export class PopoverInlineRoutingModule { }