Skip to content

Commit

Permalink
Fix trace test and set to - for null value
Browse files Browse the repository at this point in the history
Signed-off-by: Eugene Lee <[email protected]>
  • Loading branch information
eugenesk24 committed May 10, 2022
1 parent 33fa5de commit 089c17b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ describe('Testing service view', () => {
cy.wait(delay);

cy.get('.euiBadge__text').contains('spanId: ').should('exist');
cy.get('[data-test-subj="euiFlyoutCloseButton"]').click({ force: true });
cy.contains('Spans (1)').should('exist');
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export function AppTable(props: AppTableProps) {
} else if (value.color === 'undefined') {
return <EuiText>No match</EuiText>;
} else if (value.color === 'null') {
return <EuiText>Current value is null</EuiText>;
return <EuiText>-</EuiText>;
} else {
return (
<EuiLink
Expand Down

0 comments on commit 089c17b

Please sign in to comment.