onClick event 수정 #522

Merged
ysCha merged 1 commits from dev into prd-deploy 2025-12-24 13:31:12 +09:00

View File

@ -651,13 +651,16 @@ export default function StepUp(props) {
<tr
key={`row-${serQtyIdx}`}
className={`${item.selected ? 'on' : ''}`}
onClick={() => {
if (idx === 0) return
handleRowClick(idx, serQtyIdx)
}}
style={{ cursor: allocationType === 'auto' ? 'pointer' : 'default' }}
>
<td className="al-r">{item.serQty}</td>
<td
className="al-r"
onClick={() => {
handleRowClick(idx, serQtyIdx)
}}
>
{item.serQty}
</td>
<td className="al-r">
{/* 2025.12.04 select 추가 */}
{idx === 0 ? (