Fix typos

This commit is contained in:
Oliver Sand
2021-02-16 12:25:15 +01:00
parent 584dd21454
commit fccf63335c
4 changed files with 4 additions and 4 deletions
@@ -74,7 +74,7 @@ describe('<ProvidedApisCard />', () => {
);
expect(getByText(/Provided APIs/i)).toBeInTheDocument();
expect(getByText(/No Component provides this API/i)).toBeInTheDocument();
expect(getByText(/No component provides this API/i)).toBeInTheDocument();
});
it('shows consumed APIs', async () => {
@@ -83,7 +83,7 @@ export const ProvidedApisCard = ({ variant = 'gridItem' }: Props) => {
variant={variant}
emptyContent={
<div>
No Component provides this API.{' '}
No component provides this API.{' '}
<Link to="https://backstage.io/docs/features/software-catalog/descriptor-format#specprovidesapis-optional">
Learn how to provide APIs.
</Link>
@@ -29,7 +29,7 @@ export function createSpecApiTypeColumn(): TableColumn<ApiEntity> {
}
// TODO: This could be moved to plugin-catalog-react if we wouldn't have a
// special createSpecApiTypeColumn. But this is requited to use ApiTypeTitle to
// special createSpecApiTypeColumn. But this is required to use ApiTypeTitle to
// resolve the display name of an entity. Is the display name really worth it?
export const apiEntityColumns: TableColumn<ApiEntity>[] = [