|
|
@@ -36,7 +36,8 @@ const GoodsAttribute = (props) => { |
|
|
|
} |
|
|
|
}; |
|
|
|
const handleInputChange = (e, field) => { |
|
|
|
const updatedValues = [...inputValues]; |
|
|
|
// const updatedValues = [...inputValues]; |
|
|
|
const updatedValues = [inputValues]; |
|
|
|
updatedValues[field.key] = { ...updatedValues[field.key], value: e.target.value }; |
|
|
|
setInputValues(updatedValues); |
|
|
|
}; |
|
|
|