Skip to content

Commit

Permalink
Add grantnumber to MCC details page
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Jan 31, 2024
1 parent 2060f1c commit 70012e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mcc/src/client/RequestReview/components/ReadOnlyRequest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,12 @@ export default function ReadOnlyRequest(props: {requestData: AnimalRequestModel}
<Grid item xs={10}>
{translateRawToDisplayValue(requestData.request.fundingsource, fundingSourceOptions, true)}
</Grid>
<StyledGridFieldLabel item xs={2}>
<div>Grant Number(s): </div>
</StyledGridFieldLabel>
<Grid item xs={10}>
{requestData.request.grantnumber}
</Grid>
</Grid>

<p />
Expand Down
1 change: 1 addition & 0 deletions mcc/src/client/components/RequestUtils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export class AnimalRequestProps {
officialfirstname: string;
officialemail: string;
fundingsource: string;
grantnumber: string;
experimentalrationale: string;
breedinganimals: string;
breedingpurpose: string;
Expand Down

0 comments on commit 70012e2

Please sign in to comment.