|
|
|
@ -135,7 +135,7 @@ const ModalJudgeResult = ({ totJudgeUsers, totJudgeUserData, judgeCars, judgeUse
|
|
|
|
|
차량번호
|
|
|
|
|
</StyledTableCell>
|
|
|
|
|
{judgeResult?.totJudgeUsers.map((u) => (
|
|
|
|
|
<StyledTableCell align="center" style={{ width: 80 }}>
|
|
|
|
|
<StyledTableCell align="center" key={u.NAME} style={{ width: 80 }}>
|
|
|
|
|
{u.NAME}
|
|
|
|
|
</StyledTableCell>
|
|
|
|
|
))}
|
|
|
|
@ -177,7 +177,7 @@ const ModalJudgeResult = ({ totJudgeUsers, totJudgeUserData, judgeCars, judgeUse
|
|
|
|
|
|
|
|
|
|
{/* /!* 심사위원별 심사결과 *!/ */}
|
|
|
|
|
{_.range(carIdx, judgeResult.judgeUserData.length, judgeResult.judgeCars.length).map((userIdx) => (
|
|
|
|
|
<StyledTableCell align="center" style={{ width: 80 }}>
|
|
|
|
|
<StyledTableCell align="center" key={carIdx + userIdx} style={{ width: 80 }}>
|
|
|
|
|
{judgeResult.judgeUserData[userIdx].msuResult}
|
|
|
|
|
</StyledTableCell>
|
|
|
|
|
))}
|
|
|
|
|