Skip to content

Commit

Permalink
Minor Change
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhimanyu-dev committed Jul 9, 2024
1 parent 26942b9 commit 728577a
Showing 1 changed file with 30 additions and 26 deletions.
56 changes: 30 additions & 26 deletions pages/admin/rc/[rcid]/proforma/[proformaid]/view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -679,32 +679,36 @@ function View() {
sx={textFieldSX}
/>
</Grid>
<Grid item xs={12} md={6} key="min-hires" padding={0}>
<h4>Minimum Number of Hires</h4>
<TextField
multiline
fullWidth
value={row.min_hires}
InputProps={{
style: { textAlign: "center" },
readOnly: true,
}}
sx={textFieldSX}
/>
</Grid>
<Grid item xs={12} md={6} key="tot-hires" padding={0}>
<h4>Expected Total Number of Hires</h4>
<TextField
multiline
fullWidth
value={row.total_hires}
InputProps={{
style: { textAlign: "center" },
readOnly: true,
}}
sx={textFieldSX}
/>
</Grid>
{role !== 102 && (
<Grid item xs={12} md={6} key="min-hires" padding={0}>
<h4>Minimum Number of Hires</h4>
<TextField
multiline
fullWidth
value={row.min_hires}
InputProps={{
style: { textAlign: "center" },
readOnly: true,
}}
sx={textFieldSX}
/>
</Grid>
)}
{role !== 102 && (
<Grid item xs={12} md={6} key="tot-hires" padding={0}>
<h4>Expected Total Number of Hires</h4>
<TextField
multiline
fullWidth
value={row.total_hires}
InputProps={{
style: { textAlign: "center" },
readOnly: true,
}}
sx={textFieldSX}
/>
</Grid>
)}
<Grid item xs={12} md={6} key="int-per" padding={0}>
<h4>Preferred period of Internship</h4>
<TextField
Expand Down

0 comments on commit 728577a

Please sign in to comment.