Fix NumericInput proptype error (#11773)

feature/default_network_editable
David Walsh 3 years ago committed by Dan Miller
parent c2bfa57981
commit df6c05eb17
  1. 2
      ui/components/ui/numeric-input/numeric-input.component.js

@ -40,7 +40,7 @@ export default function NumericInput({
} }
NumericInput.propTypes = { NumericInput.propTypes = {
value: PropTypes.number, value: PropTypes.oneOf([PropTypes.number, PropTypes.string]),
detailText: PropTypes.string, detailText: PropTypes.string,
onChange: PropTypes.func, onChange: PropTypes.func,
error: PropTypes.string, error: PropTypes.string,

Loading…
Cancel
Save