diff --git a/projects/common-map/src/fm-map/components/map/map.component.ts b/projects/common-map/src/fm-map/components/map/map.component.ts index 62b3f81..1bac6f0 100644 --- a/projects/common-map/src/fm-map/components/map/map.component.ts +++ b/projects/common-map/src/fm-map/components/map/map.component.ts @@ -240,9 +240,12 @@ export class MapComponent implements OnInit, OnDestroy,AfterViewInit { ngAfterViewInit() { console.debug("View init"); - if(this.route.children.length == 0) { - this.noContent=true; - } + this.noContent=true; + this.route.children.forEach((entry) => { + if(entry.outlet=="") { + this.noContent=false; + } + }); this.initCustomStyles();