()
| 36986 | const o = s.target.value |
| 36987 | this.props.onChange(o, this.props.keyName) |
| 36988 | } |
| 36989 | render() { |
| 36990 | let { value: s, errors: o, description: i, disabled: a } = this.props |
| 36991 | return ( |
| 36992 | s ? (isImmutable(s) || 'object' == typeof s) && (s = stringify(s)) : (s = ''), |
| 36993 | (o = o.toJS ? o.toJS() : []), |
| 36994 | Re.createElement(ns(), { |
| 36995 | type: 'text', |
| 36996 | className: o.length ? 'invalid' : '', |
| 36997 | title: o.length ? o : '', |
| 36998 | value: s, |
| 36999 | minLength: 0, |
| 37000 | debounceTimeout: 350, |
| 37001 | placeholder: i, |
| 37002 | onChange: this.onChange, |
| 37003 | disabled: a, |
| 37004 | }) |
| 37005 | ) |
| 37006 | } |
| 37007 | } |
| 37008 | class JsonSchemaArrayItemFile extends Re.Component { |
nothing calls this directly
no test coverage detected