Skip to content

Commit

Permalink
feat: hovering over feature shows full feature name (#4138)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaanus committed Jul 4, 2023
1 parent f799f72 commit 523122d
Showing 1 changed file with 8 additions and 4 deletions.
Expand Up @@ -231,10 +231,14 @@ export const ProjectFeatureToggles = ({
Header: 'Name',
accessor: 'name',
Cell: ({ value }: { value: string }) => (
<LinkCell
title={value}
to={`/projects/${projectId}/features/${value}`}
/>
<Tooltip title={value} arrow describeChild>
<span>
<LinkCell
title={value}
to={`/projects/${projectId}/features/${value}`}
/>
</span>
</Tooltip>
),
minWidth: 100,
sortType: 'alphanumeric',
Expand Down

0 comments on commit 523122d

Please sign in to comment.