Clarify the HasSystems card title

Signed-off-by: David Tuite <david@roadie.io>
This commit is contained in:
David Tuite
2021-06-22 10:55:24 +01:00
parent 724b10e5be
commit 2c238c4c1a
2 changed files with 3 additions and 3 deletions
@@ -66,7 +66,7 @@ describe('<HasSystemsCard />', () => {
</Wrapper>,
);
expect(getByText('Systems')).toBeInTheDocument();
expect(getByText('Has systems')).toBeInTheDocument();
expect(getByText(/No system is part of this domain/i)).toBeInTheDocument();
});
@@ -112,7 +112,7 @@ describe('<HasSystemsCard />', () => {
);
await waitFor(() => {
expect(getByText('Systems')).toBeInTheDocument();
expect(getByText('Has systems')).toBeInTheDocument();
expect(getByText(/target-name/i)).toBeInTheDocument();
});
});
@@ -31,7 +31,7 @@ export const HasSystemsCard = ({ variant = 'gridItem' }: Props) => {
return (
<RelatedEntitiesCard
variant={variant}
title="Systems"
title="Has systems"
entityKind="System"
relationType={RELATION_HAS_PART}
columns={systemEntityColumns}