1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

feat: hovering over feature shows full feature name (#4138)

This commit is contained in:
Jaanus Sellin 2023-07-04 15:57:07 +03:00 committed by GitHub
parent f799f72697
commit 523122d184
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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',