Skip to content

Commit e726711

Browse files
authored
Fix modal button placement (#320)
1 parent d17f658 commit e726711

16 files changed

Lines changed: 12 additions & 20 deletions

File tree

apps/app-orch/VERSION

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

apps/app-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-app-orch
55
description: Deploy the Edge Orchestrator app-orch pod
66
type: application
7-
version: 3.2.2-dev
7+
version: 3.2.2
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: "3.2.2-dev"
11+
appVersion: "3.2.2"
1212
annotations: {}
1313
dependencies: []

apps/app-orch/src/components/organisms/applications/ApplicationTabs/ApplicationTabs.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,6 @@ const ApplicationTabs = ({ hasPermission = false }: ApplicationTabsProps) => {
241241
: ""
242242
} application.`}
243243
content="Are you sure you want to proceed?"
244-
buttonPlacement="left-reverse"
245244
isOpen
246245
confirmCb={() => {
247246
if (appToDelete) {

apps/cluster-orch/VERSION

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

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: 3.2.1-dev
7+
version: 3.2.1
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: "3.2.1-dev"
11+
appVersion: "3.2.1"
1212
annotations: {}
1313
dependencies: []

apps/cluster-orch/src/components/organism/ClusterEdit/HostSelection/HostSelection.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ const HostSelection = ({
113113
content={`Are you sure you want to remove ${deletedHostName} from ${
114114
cluster.name ?? "name"
115115
}?`}
116-
buttonPlacement="left-reverse"
117116
confirmCb={() => {
118117
let updatedNodes: cm.NodeInfo[] = [];
119118
const updatedInitialNodes: cm.NodeInfo[] = [];

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ const DeauthorizeNodeConfirmationDialog = ({
151151
confirmCb={removeNodeFn}
152152
confirmBtnText="Deauthorize"
153153
cancelCb={() => setDeauthorizeConfirmationOpen(false)}
154-
buttonPlacement="left-reverse"
155154
size={ModalSize.Medium}
156155
confirmBtnDisabled={
157156
!deauthorizeReason || deauthorizeReason.trim().length === 0

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,6 @@ export default function ClusterList({ hasPermission }: ClusterListProps) {
280280
title="Delete Cluster"
281281
subTitle={`This action will delete ${clusterToDelete} and return its hosts to unassigned state.`}
282282
content="Are you sure you want to delete the cluster?"
283-
buttonPlacement="left-reverse"
284283
isOpen={true}
285284
confirmCb={() =>
286285
clusterToDelete && deleteClusterFn(clusterToDelete)

apps/cluster-orch/src/components/pages/ClusterDetail/ClusterDetail.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,6 @@ function ClusterDetail({ hasHeader = true, name }: ClusterDetailProps) {
333333
title="Delete Cluster"
334334
subTitle={`This action will delete ${clusterDetail.name} and return its hosts to unassigned state.`}
335335
content="Are you sure you want to delete the cluster?"
336-
buttonPlacement="left-reverse"
337336
isOpen={true}
338337
confirmCb={() =>
339338
clusterDetail.name && deleteClusterFn(clusterDetail.name)

apps/infra/VERSION

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

0 commit comments

Comments
 (0)