Skip to content

Commit

Permalink
updated release name display
Browse files Browse the repository at this point in the history
  • Loading branch information
ARADDCC002 committed Jan 28, 2025
1 parent e328103 commit ebd4221
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions frontend/src/entry/model/releases/ReleaseDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,14 @@ export default function ReleaseDisplay({
sx={{ minWidth: 0 }}
>
<Link noLinkStyle href={`/model/${model.id}/release/${release.semver}`} noWrap>
<Typography component='h2' variant='h6' color='primary' noWrap>
{model.name} - {release.semver}
</Typography>
<Stack direction='row' alignItems='center' spacing={1} width='100%'>
<Typography component='h2' variant='h6' color='primary' noWrap>
{model.name} -
</Typography>
<Typography component='h2' variant='h6' color='primary'>
{release.semver}
</Typography>
</Stack>
</Link>
<CopyToClipboardButton
textToCopy={`${model.name} - ${release.semver}`}
Expand Down

0 comments on commit ebd4221

Please sign in to comment.