Skip to content

Commit

Permalink
Feat : 학생 추가 팝업 밖에서도 가능 하도록 만듬(#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
ohinhyuk committed Sep 14, 2023
1 parent 6cd902c commit 5009426
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/pages/mileage/register/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,12 @@ export default function MileageRegister({
semesterItem.item.description1,
semesterItem.points,
<Box sx={{ display: 'flex' }}>
<SWModal type={REGISTEREDSTUDENTS} beforeData={beforeData} />
<Tooltip title="등록된 학생 리스트 확인">
<SWModal type={REGISTEREDSTUDENTS} beforeData={beforeData} />
</Tooltip>
<Tooltip title="학생 추가">
<SWModal type={ADDMILEAGEREGISTER} beforeData={beforeData} />
</Tooltip>
<Tooltip title="등록된 학생 모두 삭제">
<IconButton onClick={() => handleAllDelete(semesterItem.item.id)}>
<DeleteIcon />
Expand Down

0 comments on commit 5009426

Please sign in to comment.