Skip to content

Commit ac0c8dc

Browse files
author
Dorin Paslaru
authored
Merge pull request #213 from smiclea/fix-build
Fix `yarn build` fail
2 parents f6fa701 + 8da5e42 commit ac0c8dc

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/components/atoms/CopyMultilineValue/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class CopyMultineValue extends React.Component<Props> {
5454
return (
5555
<Wrapper
5656
onClick={() => { this.handleCopy() }}
57-
data-test-id={this.props['data-test-id'] || 'copyMultilineValue'}
57+
data-test-id={(this.props && this.props['data-test-id']) || 'copyMultilineValue'}
5858
>
5959
{this.props.value}
6060
<CopyButton />

src/components/organisms/MainDetails/index.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ const ColumnsLayout = styled.div`
4444
`
4545
const Column = styled.div`
4646
${props => StyleProps.exactWidth(props.width)}
47-
/* width: ${props => props.width}; */
4847
`
4948
const Arrow = styled.div`
5049
width: 34px;

0 commit comments

Comments
 (0)