Skip to content

Commit 2a882b6

Browse files
committed
removed workflow type column
1 parent 0a41f32 commit 2a882b6

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

client/src/components/WorkflowList/WorkflowList.jsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,6 @@ const WorkflowList = ({ items, interactionType, isLoading }) => {
112112
<p>{textContent.workflowList.columns.lastRunStatus}</p>
113113
<p>{textContent.workflowList.columns.workflowName}</p>
114114
</div>
115-
<div className={styles.typeHeader}>
116-
<p>{textContent.workflowList.columns.workflowType}</p>
117-
</div>
118115
</div>
119116
)}
120117

@@ -137,7 +134,6 @@ const WorkflowList = ({ items, interactionType, isLoading }) => {
137134
)}
138135
<h4>{WorkflowItemsInteractionType.TRIGGER ? item.name : item.instanceName}</h4>
139136
</div>
140-
<p>{item.type}</p>
141137

142138
{interactionType === WorkflowItemsInteractionType.TRIGGER && (
143139
<button onClick={() => navigate(`${ROUTE.TRIGGERFORM}/${item.id}?type=${item.type}`)}>

client/src/components/WorkflowList/WorkflowList.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
padding: 1rem 0;
5757
-webkit-overflow-scrolling: touch;
5858
display: grid;
59-
grid-template-columns: 1fr 1fr 1fr;
59+
grid-template-columns: 1fr 1fr;
6060
width: 100%;
6161
justify-items: normal;
6262
align-items: center;

0 commit comments

Comments
 (0)