@lowcodeunit/applications-flow-common 1.37.98-devops-loading-logic → 1.37.99-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.
- package/esm2020/lib/elements/project-card/project-card.component.mjs +7 -7
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +6 -6
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +6 -6
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
@@ -8109,12 +8109,11 @@ class ProjectCardComponent {
|
|
8109
8109
|
this.ProjectLookups?.forEach((pLookup) => {
|
8110
8110
|
let tempProj = this.Projects[pLookup];
|
8111
8111
|
this.Project = tempProj;
|
8112
|
-
// 'https://www.' +
|
8113
8112
|
let tempProjNode = {
|
8114
8113
|
name: tempProj.Project.Name,
|
8115
8114
|
description: tempProj.Project.Description,
|
8116
8115
|
lookup: pLookup,
|
8117
|
-
url: tempProj.Hosts[tempProj?.Hosts?.length - 1],
|
8116
|
+
url: 'https://' + tempProj.Hosts[tempProj?.Hosts?.length - 1],
|
8118
8117
|
routerLink: ['/project', pLookup],
|
8119
8118
|
};
|
8120
8119
|
let tempRoutes = this.ApplicationRoutes;
|
@@ -8122,10 +8121,10 @@ class ProjectCardComponent {
|
|
8122
8121
|
let tempProjChildren = [];
|
8123
8122
|
tempRoutes.forEach((appRoute) => {
|
8124
8123
|
this.AppRoute = appRoute;
|
8125
|
-
// 'https://www.' +
|
8126
8124
|
let tempRouteNode = {
|
8127
8125
|
name: this.AppRoute,
|
8128
|
-
url:
|
8126
|
+
url: 'https://' +
|
8127
|
+
tempProj?.Hosts[tempProj?.Hosts?.length - 1] +
|
8129
8128
|
this.AppRoute,
|
8130
8129
|
routerLink: ['/route', this.AppRoute, pLookup],
|
8131
8130
|
};
|
@@ -8134,11 +8133,12 @@ class ProjectCardComponent {
|
|
8134
8133
|
let tempRouteChildren = [];
|
8135
8134
|
tempApps.forEach((appLookup) => {
|
8136
8135
|
let tempApp = this.RoutedApplications[this.AppRoute][appLookup];
|
8137
|
-
// 'https://www.' +
|
8138
8136
|
let tempAppNode = {
|
8139
8137
|
lookup: appLookup,
|
8140
8138
|
name: tempApp.Application.Name,
|
8141
|
-
url:
|
8139
|
+
url: 'https://' +
|
8140
|
+
tempProj?.Hosts[tempProj?.Hosts?.length - 1] +
|
8141
|
+
this.AppRoute,
|
8142
8142
|
description: tempApp.Application.Description,
|
8143
8143
|
routerLink: [
|
8144
8144
|
'/application',
|