Skip to content

Commit

Permalink
fix for #267
Browse files Browse the repository at this point in the history
  • Loading branch information
ck-c8y committed Oct 1, 2024
1 parent a2dc5ae commit d62e807
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dynamic-mapping-ui/src/shared/navigation.factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ export class MappingNavigationFactory implements NavigatorNodeFactory {
public router: Router
) {
this.appStateService.currentApplication.subscribe((cur) => {
// console.log('AppName in MappingNavigationFactory', cur, this.router.url);
console.log('AppName in MappingNavigationFactory', cur, this.router.url);

if (_.has(cur?.manifest , 'exports')) {
this.isStandaloneApp = true;
if (_.has(cur?.manifest, 'isPackage')) {
this.isStandaloneApp = cur?.manifest?.isPackage;
}
this.appName = cur.name;
});
Expand Down

0 comments on commit d62e807

Please sign in to comment.