Skip to content

Commit

Permalink
Merge pull request #65 from deepali-chavhan/develop
Browse files Browse the repository at this point in the history
TaskId #226755 fix: Changes for class , set read only for edit mode
  • Loading branch information
ankush-maherwal authored Sep 16, 2024
2 parents 5a1580d + 46a4928 commit ebb4149
Show file tree
Hide file tree
Showing 5 changed files with 207 additions and 118 deletions.
5 changes: 4 additions & 1 deletion packages/admin/src/api/studentAPI.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ const studentAPI = async (data) => {
noOfSiblings: data.noOfSiblings,
motherName : data.motherName,
fatherName : data.fatherName,
medium : data.medium
medium : data.medium,
state : data.state,
block : data.block,
district : data.district,
// studentEnrollId: data.studentEnrollId,
};

Expand Down
5 changes: 4 additions & 1 deletion packages/admin/src/api/studentUpdateAPI.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ const studentUpdateAPI = async (data) => {
noOfSiblings: data.noOfSiblings,
motherName : data.motherName,
fatherName : data.fatherName,
medium : data.medium
medium : data.medium,
state : data.state,
block : data.block,
district : data.district,
// studentEnrollId: data.studentEnrollId,
};

Expand Down
Loading

0 comments on commit ebb4149

Please sign in to comment.