feat(overflowtooltip): add text as default title for tooltip

This commit is contained in:
Kiran Patel
2021-02-04 09:04:23 +11:00
parent ba070def57
commit c380f32c35
4 changed files with 30 additions and 8 deletions
@@ -95,8 +95,8 @@ const columns: TableColumn<EntityRow>[] = [
field: 'entity.metadata.description',
render: ({ entity }) => (
<OverflowTooltip
title={entity.metadata.description as string}
text={entity.metadata.description}
placement="bottom-start"
/>
),
},