From d288ffc77a8ed81cd706a38ba525e9b97fe3f4f5 Mon Sep 17 00:00:00 2001 From: Aurelio Saraiva Date: Tue, 31 Aug 2021 09:51:07 -0300 Subject: [PATCH] fixed typo camelcase Signed-off-by: Aurelio Saraiva --- plugins/techdocs/src/home/components/columns.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/techdocs/src/home/components/columns.tsx b/plugins/techdocs/src/home/components/columns.tsx index b7ec8271a4..d29f44da75 100644 --- a/plugins/techdocs/src/home/components/columns.tsx +++ b/plugins/techdocs/src/home/components/columns.tsx @@ -20,7 +20,7 @@ import { EntityRefLinks } from '@backstage/plugin-catalog-react'; import { Entity } from '@backstage/catalog-model'; import { DocsTableRow } from './types'; -function customTitle(entity: Entity): String { +function customTitle(entity: Entity): string { return entity.metadata.title || entity.metadata.name; }