Skip to content

Commit

Permalink
[SecuritySolution] Remove empty row (#129909)
Browse files Browse the repository at this point in the history
* fix: remove horizontal rule

The horizontal rule in this component in combination with the bottom border of the above table made it look like there is an empty row in the table. The divider is now replaced by a spacer to visually separate the Investigation guide and the highlighted fields.

* chore: remove unused import
  • Loading branch information
janmonschke authored Apr 12, 2022
1 parent d1e3ce2 commit d638fa4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* 2.0.
*/

import { EuiSpacer, EuiHorizontalRule, EuiTitle, EuiText } from '@elastic/eui';
import { EuiSpacer, EuiTitle, EuiText } from '@elastic/eui';
import { ALERT_RULE_UUID } from '@kbn/rule-data-utils';

import React, { useMemo } from 'react';
Expand Down Expand Up @@ -39,7 +39,7 @@ const InvestigationGuideViewComponent: React.FC<{

return (
<>
<EuiHorizontalRule />
<EuiSpacer size="l" />
<EuiTitle size="xxxs" data-test-subj="summary-view-guide">
<h5>{i18n.INVESTIGATION_GUIDE}</h5>
</EuiTitle>
Expand Down

0 comments on commit d638fa4

Please sign in to comment.