Skip to content

Commit

Permalink
Merge pull request openshift#11799 from vikram-raj/bz-2103972
Browse files Browse the repository at this point in the history
Bug 2103972: fix MultiColumnField header alignment used for Pipeline parameters
  • Loading branch information
openshift-ci[bot] authored Jul 15, 2022
2 parents 82de8d1 + 45adc98 commit 816d9ce
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface MultiColumnFieldHeaderProps {

const MultiColumnFieldHeader: React.FC<MultiColumnFieldHeaderProps> = ({ headers, spans }) => (
<div className="odc-multi-column-field__header">
<Grid className="odc-multi-column-field__header">
<Grid>
{headers.map((header, i) => (
<GridItem span={spans[i]} key={typeof header === 'string' ? header : header.name}>
<div className="odc-multi-column-field__col">
Expand All @@ -32,7 +32,6 @@ const MultiColumnFieldHeader: React.FC<MultiColumnFieldHeaderProps> = ({ headers
</GridItem>
))}
</Grid>
<div className="odc-multi-column-field__col--button" />
</div>
);

Expand Down

0 comments on commit 816d9ce

Please sign in to comment.