Skip to content

Commit

Permalink
fix(ui): Input artifacts labelled in UI. Fixes #3098 (#3131)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbreeze committed May 29, 2020
1 parent c0d59cc commit df725bb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

.workflow-node-info {

.tabs {
a {
padding-right: 0;
padding-left: 0;
}
}

&__multi-line {
line-height: 24px;
display: inline-block;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export const WorkflowNodeInputs = (props: {inputs: models.Inputs}) => {
]}
{artifacts.length > 0 && [
<div className='row white-box__details-row' key='title'>
<p>Artifacts</p>
<p>Input Artifacts</p>
</div>,
<AttributeRows key='attrs' attributes={artifacts} />
]}
Expand Down Expand Up @@ -286,7 +286,7 @@ export const WorkflowNodeInfo = (props: Props) => (
content: <WorkflowNodeContainers {...props} />
},
{
title: 'ARTIFACTS',
title: 'OUTPUT ARTIFACTS',
key: 'artifacts',
content: <WorkflowNodeArtifacts {...props} />
}
Expand Down

0 comments on commit df725bb

Please sign in to comment.