Skip to content

Commit

Permalink
fixes alignment issue with timestamp when process is long and wraps (#…
Browse files Browse the repository at this point in the history
…129807) (#129823)

Co-authored-by: mitodrummer <[email protected]>
(cherry picked from commit da91267)

Co-authored-by: Karl Godard <[email protected]>
  • Loading branch information
kibanamachine and mitodrummer authored Apr 7, 2022
1 parent ff3dd8d commit 3434b6f
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,11 @@ export function ProcessTreeNode({
</>
) : (
<span>
{timeStampOn && (
<span data-test-subj="sessionView:processTreeNodeTimestamp" css={styles.timeStamp}>
{timeStampsNormal}
</span>
)}
<EuiToolTip position="top" content={iconTooltip}>
<EuiIcon data-test-subj={iconTestSubj} type={processIcon} />
</EuiToolTip>{' '}
Expand All @@ -263,11 +268,6 @@ export function ProcessTreeNode({
</small>
)}
</span>
{timeStampOn && (
<span data-test-subj="sessionView:processTreeNodeTimestamp" css={styles.timeStamp}>
{timeStampsNormal}
</span>
)}
</span>
)}

Expand Down

0 comments on commit 3434b6f

Please sign in to comment.