Skip to content

Commit

Permalink
Fix Sizing of Work Package Name
Browse files Browse the repository at this point in the history
  • Loading branch information
Peyton-McKee committed Jan 24, 2025
1 parent 24359f7 commit 88763da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const WorkPackageSummary: React.FC<WorkPackageSummaryProps> = ({ workPackage })
<Typography>{wbsPipe(workPackage.wbsNum)}</Typography>
<Box flexGrow={1} paddingLeft={2}>
<Link component={RouterLink} to={`${routes.PROJECTS}/${wbsPipe(workPackage.wbsNum)}`}>
{workPackage.name}
<Typography variant="body1">{workPackage.name}</Typography>
</Link>
</Box>
{workPackage.stage ? <WorkPackageStageChip stage={workPackage.stage} /> : null}
Expand Down

0 comments on commit 88763da

Please sign in to comment.