@lowcodeunit/applications-flow-common 1.37.97-devops-loading-logic → 1.37.98-devops-loading-logic

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.
@@ -8109,12 +8109,12 @@ class ProjectCardComponent {
8109
8109
  this.ProjectLookups?.forEach((pLookup) => {
8110
8110
  let tempProj = this.Projects[pLookup];
8111
8111
  this.Project = tempProj;
8112
+ // 'https://www.' +
8112
8113
  let tempProjNode = {
8113
8114
  name: tempProj.Project.Name,
8114
8115
  description: tempProj.Project.Description,
8115
8116
  lookup: pLookup,
8116
- url: 'https://www.' +
8117
- tempProj.Hosts[tempProj?.Hosts?.length - 1],
8117
+ url: tempProj.Hosts[tempProj?.Hosts?.length - 1],
8118
8118
  routerLink: ['/project', pLookup],
8119
8119
  };
8120
8120
  let tempRoutes = this.ApplicationRoutes;
@@ -8122,10 +8122,10 @@ class ProjectCardComponent {
8122
8122
  let tempProjChildren = [];
8123
8123
  tempRoutes.forEach((appRoute) => {
8124
8124
  this.AppRoute = appRoute;
8125
+ // 'https://www.' +
8125
8126
  let tempRouteNode = {
8126
8127
  name: this.AppRoute,
8127
- url: 'https://www.' +
8128
- tempProj?.Hosts[tempProj?.Hosts?.length - 1] +
8128
+ url: tempProj?.Hosts[tempProj?.Hosts?.length - 1] +
8129
8129
  this.AppRoute,
8130
8130
  routerLink: ['/route', this.AppRoute, pLookup],
8131
8131
  };
@@ -8134,12 +8134,11 @@ class ProjectCardComponent {
8134
8134
  let tempRouteChildren = [];
8135
8135
  tempApps.forEach((appLookup) => {
8136
8136
  let tempApp = this.RoutedApplications[this.AppRoute][appLookup];
8137
+ // 'https://www.' +
8137
8138
  let tempAppNode = {
8138
8139
  lookup: appLookup,
8139
8140
  name: tempApp.Application.Name,
8140
- url: 'https://www.' +
8141
- tempProj?.Hosts[tempProj?.Hosts?.length - 1] +
8142
- this.AppRoute,
8141
+ url: tempProj?.Hosts[tempProj?.Hosts?.length - 1] + this.AppRoute,
8143
8142
  description: tempApp.Application.Description,
8144
8143
  routerLink: [
8145
8144
  '/application',