mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-26 13:48:33 +02:00
fix: depenency name truncator (#9696)

This commit is contained in:
parent
f20ea86c61
commit
821851a2f3
@ -23,6 +23,7 @@ import {
|
||||
StyledMetaDataItemLabel,
|
||||
StyledMetaDataItemValue,
|
||||
} from './FeatureOverviewMetaData';
|
||||
import { Truncator } from 'component/common/Truncator/Truncator';
|
||||
|
||||
const StyledPermissionButton = styled(PermissionButton)(({ theme }) => ({
|
||||
fontSize: theme.fontSizes.smallBody,
|
||||
@ -137,7 +138,9 @@ export const DependencyRow = ({ feature }: IDependencyRowProps) => {
|
||||
<StyledLink
|
||||
to={`/projects/${feature.project}/features/${feature.dependencies[0]?.feature}`}
|
||||
>
|
||||
{feature.dependencies[0]?.feature}
|
||||
<Truncator title={feature.dependencies[0]?.feature}>
|
||||
{feature.dependencies[0]?.feature}
|
||||
</Truncator>
|
||||
</StyledLink>
|
||||
{checkAccess(UPDATE_FEATURE_DEPENDENCY, environment) ? (
|
||||
<DependencyActions
|
||||
|
Loading…
Reference in New Issue
Block a user