mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-04 00:18:01 +01:00
feat: hovering over feature shows full feature name (#4138)
This commit is contained in:
parent
f799f72697
commit
523122d184
@ -231,10 +231,14 @@ export const ProjectFeatureToggles = ({
|
|||||||
Header: 'Name',
|
Header: 'Name',
|
||||||
accessor: 'name',
|
accessor: 'name',
|
||||||
Cell: ({ value }: { value: string }) => (
|
Cell: ({ value }: { value: string }) => (
|
||||||
|
<Tooltip title={value} arrow describeChild>
|
||||||
|
<span>
|
||||||
<LinkCell
|
<LinkCell
|
||||||
title={value}
|
title={value}
|
||||||
to={`/projects/${projectId}/features/${value}`}
|
to={`/projects/${projectId}/features/${value}`}
|
||||||
/>
|
/>
|
||||||
|
</span>
|
||||||
|
</Tooltip>
|
||||||
),
|
),
|
||||||
minWidth: 100,
|
minWidth: 100,
|
||||||
sortType: 'alphanumeric',
|
sortType: 'alphanumeric',
|
||||||
|
Loading…
Reference in New Issue
Block a user