Skip to content

Commit

Permalink
Merge pull request #9883 from jerolimov/bz-1997655
Browse files Browse the repository at this point in the history
Bug 1997655: Remove unused data-test-id which logs a react warning
  • Loading branch information
openshift-merge-robot committed Aug 26, 2021
2 parents fd00176 + ad08900 commit 9301d75
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const PipelineStatus: React.FC<PipelineStatusProps> = ({ obj }) => {

const PipelineRow: React.FC<RowFunctionArgs<PipelineWithLatest>> = ({ obj }) => {
return (
<React.Fragment data-test-id={`${obj.metadata.namespace}-${obj.metadata.name}`}>
<>
<TableData className={tableColumnClasses[0]}>
<ResourceLink
kind={pipelineReference}
Expand Down Expand Up @@ -66,7 +66,7 @@ const PipelineRow: React.FC<RowFunctionArgs<PipelineWithLatest>> = ({ obj }) =>
<TableData className={tableColumnClasses[6]}>
<PipelineRowKebabActions pipeline={obj} />
</TableData>
</React.Fragment>
</>
);
};

Expand Down

0 comments on commit 9301d75

Please sign in to comment.