Merge pull request #567 from comey246/fix-bug-inputType

fix: bug inputType
This commit is contained in:
Henry Heng
2023-07-18 19:02:16 +01:00
committed by GitHub
+1 -1
View File
@@ -61,7 +61,7 @@ export const Input = ({ inputParam, value, onChange, disabled = false, showDialo
Input.propTypes = {
inputParam: PropTypes.object,
value: PropTypes.string,
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
onChange: PropTypes.func,
disabled: PropTypes.bool,
showDialog: PropTypes.bool,