Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Commit 726fb27

Browse files
Sandeep KumarSandeep Kumar
authored andcommitted
col size updates
1 parent b4394cb commit 726fb27

3 files changed

Lines changed: 22 additions & 8 deletions

File tree

fe/src/components/executionsGraph.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const ExecutionsGraph = (props) => {
4949
getLayoutedElements(props.jsonGraphData);
5050

5151
return (
52-
<ReactFlow elements={props.jsonGraphData} defaultZoom={0.6}>
52+
<ReactFlow elements={props.jsonGraphData} defaultZoom={1}>
5353
<Background variant="dots" gap={25} size={1} />
5454
</ReactFlow>
5555
);

fe/src/components/listStepFunctions.js

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,20 +69,29 @@ const ListStepFunctions = (props) => {
6969

7070
return (
7171
<Row>
72-
<Col style={{ width: "256px" }}>{createMenu(props.tableData)}</Col>
72+
<Col
73+
span={4}
74+
// push={6}
75+
// style={{ width: "256px" }}
76+
>
77+
{createMenu(props.tableData)}
78+
</Col>
7379
{display === false ? (
74-
<div
80+
<Col
81+
span={20}
7582
style={{
7683
display: "flex",
7784
justifyContent: "center",
7885
marginTop: "19%",
79-
width: "80vw",
8086
}}
8187
>
8288
Click on the Step Function Name on the left to load the executions
83-
</div>
89+
</Col>
8490
) : (
85-
<Col style={{ width: "calc(100vw - 256px)" }}>
91+
<Col
92+
span={20}
93+
// style={{ width: "calc(100vw - 256px)" }}
94+
>
8695
<ProcessStepFunction awsInfo={props.awsInfo} data={stpFn} />
8796
</Col>
8897
)}

fe/src/components/processStepFunction.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,22 @@ const ProcessStepFunction = (props) => {
2020

2121
const display = (ds) => {
2222
const success = (
23+
//total span is 20
2324
<Row style={{ padding: "24px" }}>
24-
<Col style={{ width: "35%", paddingRight: "12px" }}>
25+
<Col
26+
span={8}
27+
// style={{ width: "35%", paddingRight: "12px" }}
28+
>
2529
<ExecutionsTable
2630
logs={logs}
2731
setCurrentGraph={setCurrentGraph}
2832
baseGraph={baseGraph}
2933
/>
3034
</Col>
3135
<Col
36+
span={16}
3237
style={{
33-
width: "65%",
38+
// width: "65%",
3439
paddingLeft: "24px",
3540
}}
3641
>

0 commit comments

Comments
 (0)