Skip to content

Commit dc1a2e6

Browse files
authored
Cherry Pick from main into 3.1-release for October Patch Release (#322)
1 parent c8dc5f3 commit dc1a2e6

6 files changed

Lines changed: 13 additions & 6 deletions

File tree

apps/cluster-orch/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.29-dev
1+
2.0.31

apps/cluster-orch/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ apiVersion: v2
44
name: orch-ui-cluster-orch
55
description: Deploy the Edge Orchestrator cluster-orch pod
66
type: application
7-
version: 2.0.29-dev
7+
version: 2.0.31
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

1010
# This value is supplied only to enable local unbuilt deployment of released content.
11-
appVersion: "2.0.29-dev"
11+
appVersion: "2.0.31"
1212
annotations: {}
1313
dependencies: []

apps/cluster-orch/src/components/organism/ClusterTemplatesList/ClusterTemplatesList.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ const ClusterTemplatesList = ({
140140

141141
{doTemplatesExist && (
142142
<Table
143+
key={templates?.templateInfoList?.length}
143144
columns={columns}
144145
data={templates?.templateInfoList}
145146
canSearch

apps/infra/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.32-dev
1+
1.0.32

apps/infra/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ apiVersion: v2
44
name: orch-ui-infra
55
description: Deploy the Edge-Native Software Platform Infrastructure pod
66
type: application
7-
version: 1.0.32-dev
7+
version: 1.0.32
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

10-
appVersion: "1.0.32-dev"
10+
appVersion: "1.0.32"
1111
dependencies: []
1212
annotations: {}

apps/infra/src/components/pages/region/RegionForm.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,12 @@ const RegionForm: React.FC = () => {
354354
delete data.parentId;
355355
delete data.parentRegion;
356356
}
357+
358+
if (!parentRegion) {
359+
delete data.parentId;
360+
delete data.parentRegion;
361+
}
362+
357363
if (parentRegionId) {
358364
data.parentId =
359365
regions?.find((r) => r.resourceId === parentRegion)?.resourceId ||

0 commit comments

Comments
 (0)