mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-21 13:47:39 +02:00
This PR fixes links to segments from change requests and the bottom border radius for segment change boxes. Old border radius:  New border radius: 
This commit is contained in:
parent
f889eba6e9
commit
18b5161ade
@ -44,7 +44,7 @@ export const SegmentChange: FC<ISegmentChangeProps> = ({
|
|||||||
|
|
||||||
<Link
|
<Link
|
||||||
component={RouterLink}
|
component={RouterLink}
|
||||||
to={`/segments/${segmentChange.payload.id}`}
|
to={`/segments/edit/${segmentChange.payload.id}`}
|
||||||
color="primary"
|
color="primary"
|
||||||
underline="hover"
|
underline="hover"
|
||||||
sx={{
|
sx={{
|
||||||
|
@ -38,6 +38,7 @@ const SegmentContainer = styled(Box)(({ theme }) => ({
|
|||||||
borderColor: theme.palette.divider,
|
borderColor: theme.palette.divider,
|
||||||
borderTopColor: theme.palette.divider,
|
borderTopColor: theme.palette.divider,
|
||||||
padding: theme.spacing(3),
|
padding: theme.spacing(3),
|
||||||
|
borderRadius: `0 0 ${theme.shape.borderRadiusLarge}px ${theme.shape.borderRadiusLarge}px`,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
export const SegmentChangeDetails: VFC<{
|
export const SegmentChangeDetails: VFC<{
|
||||||
|
Loading…
Reference in New Issue
Block a user