Skip to content

Commit

Permalink
update snapshots (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdevalapurkar authored Mar 17, 2021
1 parent f38bf72 commit 1b2a3f1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,7 @@ exports[`ProjectDetails renders correctly 1`] = `
>
<h6
class="MuiTypography-root MuiTypography-subtitle1"
style="word-break: break-all;"
>
Amanda Christensen
</h6>
Expand All @@ -657,6 +658,7 @@ exports[`ProjectDetails renders correctly 1`] = `
>
<h6
class="MuiTypography-root MuiTypography-subtitle1"
style="word-break: break-all;"
>
[email protected]
</h6>
Expand All @@ -679,6 +681,7 @@ exports[`ProjectDetails renders correctly 1`] = `
>
<h6
class="MuiTypography-root MuiTypography-subtitle1"
style="word-break: break-all;"
>
Amanda and associates
</h6>
Expand Down
10 changes: 7 additions & 3 deletions app/src/features/projects/view/components/ProjectCoordinator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const ProjectCoordinator: React.FC<IProjectDetailsProps> = (props) => {
<Typography variant="caption">Name</Typography>
</Box>
<Box>
<Typography variant="subtitle1">
<Typography style={{ wordBreak: 'break-all' }} variant="subtitle1">
{coordinator.first_name} {coordinator.last_name}
</Typography>
</Box>
Expand All @@ -47,15 +47,19 @@ const ProjectCoordinator: React.FC<IProjectDetailsProps> = (props) => {
<Typography variant="caption">Email Address</Typography>
</Box>
<Box>
<Typography variant="subtitle1">{coordinator.email_address}</Typography>
<Typography style={{ wordBreak: 'break-all' }} variant="subtitle1">
{coordinator.email_address}
</Typography>
</Box>
</Grid>
<Grid item xs={12} sm={6} md={4}>
<Box color="text.disabled">
<Typography variant="caption">Agency</Typography>
</Box>
<Box>
<Typography variant="subtitle1">{coordinator.coordinator_agency}</Typography>
<Typography style={{ wordBreak: 'break-all' }} variant="subtitle1">
{coordinator.coordinator_agency}
</Typography>
</Box>
</Grid>
</Grid>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ exports[`ProjectCoordinator renders correctly 1`] = `
>
<h6
class="MuiTypography-root MuiTypography-subtitle1"
style="word-break: break-all;"
>
Amanda Christensen
</h6>
Expand All @@ -94,6 +95,7 @@ exports[`ProjectCoordinator renders correctly 1`] = `
>
<h6
class="MuiTypography-root MuiTypography-subtitle1"
style="word-break: break-all;"
>
[email protected]
</h6>
Expand All @@ -116,6 +118,7 @@ exports[`ProjectCoordinator renders correctly 1`] = `
>
<h6
class="MuiTypography-root MuiTypography-subtitle1"
style="word-break: break-all;"
>
Amanda and associates
</h6>
Expand Down

0 comments on commit 1b2a3f1

Please sign in to comment.