Skip to content

Commit

Permalink
Added perks to student proforma
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhimanyu-dev committed Sep 14, 2024
1 parent c3876d1 commit 4c02550
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pages/student/rc/[rcid]/proforma/[proformaId]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,18 @@ function Index() {
sx={textFieldSX}
/>
</Grid>
<Grid item xs={12} md={12} key="perks">
<h3>Perks</h3>
<TextField
multiline
fullWidth
value={row.perks}
InputProps={{
readOnly: true,
}}
sx={textFieldSX}
/>
</Grid>
<Grid item xs={12} md={12} key="jd">
<h3>Job Description</h3>
{isFetched && <RichText onChange={setJd} readOnly value={jd} />}
Expand Down Expand Up @@ -372,6 +384,18 @@ function Index() {
sx={textFieldSX}
/>
</Grid>
<Grid item xs={12} md={12} key="perks">
<h3>Perks</h3>
<TextField
multiline
fullWidth
value={row.perks}
InputProps={{
readOnly: true,
}}
sx={textFieldSX}
/>
</Grid>
<Grid item xs={12} md={12} key="jd">
<h3>Job Description</h3>
{isFetched && <RichText onChange={setJd} readOnly value={jd} />}
Expand Down

0 comments on commit 4c02550

Please sign in to comment.