Merge branch 'dev' of https://git.hanasys.jp/qcast3/qcast-front into dev_ysCha
This commit is contained in:
commit
984428ee4f
@ -659,7 +659,7 @@ export default function StepUp(props) {
|
|||||||
<td
|
<td
|
||||||
className="al-r"
|
className="al-r"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
handleRowClick(idx, serQtyIdx)
|
handleRowClick(idx, serQtyIdx, item.paralQty)
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{item.serQty}
|
{item.serQty}
|
||||||
@ -682,7 +682,11 @@ export default function StepUp(props) {
|
|||||||
</option>
|
</option>
|
||||||
)}
|
)}
|
||||||
{Array.from(
|
{Array.from(
|
||||||
{ length: originPcsVoltageStepUpList[index].pcsItemList[idx].serQtyList[serQtyIdx].paralQty },
|
{
|
||||||
|
length: originPcsVoltageStepUpList[index]
|
||||||
|
? originPcsVoltageStepUpList[index]?.pcsItemList[idx].serQtyList[serQtyIdx].paralQty
|
||||||
|
: item.paralQty,
|
||||||
|
},
|
||||||
(_, i) => i + 1,
|
(_, i) => i + 1,
|
||||||
).map((num) => (
|
).map((num) => (
|
||||||
<option key={num} value={num}>
|
<option key={num} value={num}>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user