Skip to content

Commit

Permalink
chore(#4209): minor front-end fixes (#4437)
Browse files Browse the repository at this point in the history
This PR fixes links to segments from change requests and the bottom
border radius for segment change boxes.

Old border radius:

![image](https://github.com/Unleash/unleash/assets/17786332/e2485e8c-9dab-4fbc-8604-6abd48e13be1)


New border radius: 

![image](https://github.com/Unleash/unleash/assets/17786332/2e2f54b0-37c0-4cec-9902-14b43827beaf)
  • Loading branch information
thomasheartman committed Aug 7, 2023
1 parent f889eba commit 18b5161
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -44,7 +44,7 @@ export const SegmentChange: FC<ISegmentChangeProps> = ({

<Link
component={RouterLink}
to={`/segments/${segmentChange.payload.id}`}
to={`/segments/edit/${segmentChange.payload.id}`}
color="primary"
underline="hover"
sx={{
Expand Down
Expand Up @@ -38,6 +38,7 @@ const SegmentContainer = styled(Box)(({ theme }) => ({
borderColor: theme.palette.divider,
borderTopColor: theme.palette.divider,
padding: theme.spacing(3),
borderRadius: `0 0 ${theme.shape.borderRadiusLarge}px ${theme.shape.borderRadiusLarge}px`,
}));

export const SegmentChangeDetails: VFC<{
Expand Down

0 comments on commit 18b5161

Please sign in to comment.