Skip to content

Commit

Permalink
fix(table): remove unnecessary space (#3797)
Browse files Browse the repository at this point in the history
  • Loading branch information
erzhan-temir-mamyrov authored Jun 14, 2023
1 parent d690721 commit eee549a
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,9 @@ class ColumnHeaderRow extends Component {
return (
<DragAndDrop>
<TableRow data-testid={testId} className={`${iotPrefix}--column-header-row--table-row`}>
{' '}
{hasDragAndDrop && (
{hasDragAndDrop ? (
<TableHeader className={`${iotPrefix}--column-header-row--table-header`} />
)}
) : null}
{hasRowSelection === 'multi' ? (
<TableHeader className={`${iotPrefix}--column-header-row--table-header`} />
) : null}
Expand Down

0 comments on commit eee549a

Please sign in to comment.