Skip to content

Commit

Permalink
[Security Solution] expandable flyout - increase line-height for sess…
Browse files Browse the repository at this point in the history
…ion preview (elastic#166932)

(cherry picked from commit 416dabf)

# Conflicts:
#	x-pack/plugins/security_solution/public/flyout/right/components/session_preview.tsx
  • Loading branch information
PhilippeOberti committed Sep 27, 2023
1 parent 4ac2827 commit e0f9c2f
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import { EuiCode, EuiIcon, useEuiTheme } from '@elastic/eui';
import React, { useMemo, type FC } from 'react';
import { css } from '@emotion/react';
import { SESSION_PREVIEW_TEST_ID } from './test_ids';
import { useRightPanelContext } from '../context';
import { SIGNAL_RULE_NAME_FIELD_NAME } from '../../../timelines/components/timeline/body/renderers/constants';
Expand Down Expand Up @@ -103,7 +104,12 @@ export const SessionPreview: FC = () => {
}, [command, workdir]);

return (
<div data-test-subj={SESSION_PREVIEW_TEST_ID}>
<div
css={css`
line-height: 1.5;
`}
data-test-subj={SESSION_PREVIEW_TEST_ID}
>
<ValueContainer>
<EuiIcon type="user" />
&nbsp;
Expand Down

0 comments on commit e0f9c2f

Please sign in to comment.