Skip to content

Commit

Permalink
updates Error legend default message to align with tooltip message an…
Browse files Browse the repository at this point in the history
…d the other legend texts (#115896) (#115944)

Co-authored-by: Gloria Hornero <snootchie.boochies@gmail.com>
  • Loading branch information
kibanamachine and MadameSheema authored Oct 21, 2021
1 parent 61503c4 commit 4852224
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,12 @@ describe('graph controls: when relsover is loaded with an origin node', () => {
.testSubject('resolver:graph-controls:node-legend:description')
.map((description) => description.text())
)
).toYieldEqualTo(['Running Process', 'Terminated Process', 'Loading Process', 'Error']);
).toYieldEqualTo([
'Running Process',
'Terminated Process',
'Loading Process',
'Error Process',
]);
});
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ const NodeLegend = ({
>
<GeneratedText>
{i18n.translate('xpack.securitySolution.resolver.graphControls.errorCube', {
defaultMessage: 'Error',
defaultMessage: 'Error Process',
})}
</GeneratedText>
</StyledEuiDescriptionListDescription>
Expand Down

0 comments on commit 4852224

Please sign in to comment.