Skip to content

Commit

Permalink
EPMRPP-78497 || Launch separation line is missing padding for launch …
Browse files Browse the repository at this point in the history
…without description (#3190)
  • Loading branch information
Vadim73i committed Jul 25, 2022
1 parent 171d7a1 commit 351e3e4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/src/components/main/grid/gridBody/gridRow/gridRow.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export class GridRow extends Component {
/>
)}
</div>
{descriptionConfig && !!value.description && (
{descriptionConfig && !!value.description ? (
<tr className={cx('description-row')} ref={this.descriptionRef}>
<td
colSpan={descriptionConfig.colSpan}
Expand All @@ -281,6 +281,8 @@ export class GridRow extends Component {
</div>
</td>
</tr>
) : (
<tr className={cx('description-row')} ref={this.descriptionRef} />
)}
{this.state.withAccordion && (
<div className={cx('grid-row')}>
Expand Down

0 comments on commit 351e3e4

Please sign in to comment.