forgot to run Prettier

Signed-off-by: Alex Rybchenko <arybchenko@box.com>
This commit is contained in:
Alex Rybchenko
2021-09-28 19:38:27 +02:00
committed by blam
parent 9acdd257dd
commit 9428a20365
2 changed files with 2 additions and 7 deletions
@@ -150,9 +150,7 @@ export function createMetadataDescriptionColumn<
};
}
export function createMetadataTitleColumn<
T extends Entity,
>(): TableColumn<T> {
export function createMetadataTitleColumn<T extends Entity>(): TableColumn<T> {
return {
title: 'Title',
field: 'metadata.title',
@@ -99,10 +99,7 @@ export function createMetadataTitleColumn(): TableColumn<EntityRow> {
title: 'Title',
field: 'entity.metadata.title',
render: ({ entity }) => (
<OverflowTooltip
text={entity.metadata.title}
placement="bottom-start"
/>
<OverflowTooltip text={entity.metadata.title} placement="bottom-start" />
),
width: 'auto',
};