@lowcodeunit/applications-flow-common 1.36.123-integration → 1.36.124-integration

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -510,6 +510,7 @@ class ProjectService {
510
510
  if (params?.direct == 'true') {
511
511
  let projKeys = Object.keys(state.EaC.Projects || {});
512
512
  if (projKeys.length == 1) {
513
+ console.log('Directing to deeper link');
513
514
  let appKeys = Object.keys(state.EaC.Applications || {});
514
515
  if (appKeys.length == 1) {
515
516
  let app = state.EaC.Applications[appKeys[0]];
@@ -520,9 +521,6 @@ class ProjectService {
520
521
  window.location.href = `/dashboard/project/${projKeys[0]}`;
521
522
  }
522
523
  }
523
- else {
524
- window.location.href = `/dashboard`;
525
- }
526
524
  }
527
525
  });
528
526
  console.log(state);