Merge pull request 'onClick event 수정' (#521) from dev into dev-deploy
Reviewed-on: #521
This commit is contained in:
commit
21b5fb9a66
@ -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 ? (
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user