[develop | DONE | FIXED]: [BUG FIX] resultLanding.component.ts: Get type of entity from route.snapshot.data.type.

This commit is contained in:
Konstantina Galouni 2024-03-04 11:17:50 +02:00
parent da4a5f3321
commit 00a5150042
1 changed files with 3 additions and 0 deletions

View File

@ -199,6 +199,9 @@ export class ResultLandingComponent {
private userManagementService: UserManagementService,
private layoutService: LayoutService,
private _contextService: ContextsService) {
if(route.snapshot.data && route.snapshot.data['type']) {
this.type = route.snapshot.data['type'];
}
}
ngOnInit() {