()
| 37079 | const o = s.target.value |
| 37080 | this.onChange(o) |
| 37081 | } |
| 37082 | render() { |
| 37083 | let { getComponent: s, value: o, errors: i, disabled: a } = this.props |
| 37084 | const u = s('TextArea') |
| 37085 | return ( |
| 37086 | (i = i.toJS ? i.toJS() : Array.isArray(i) ? i : []), |
| 37087 | Re.createElement( |
| 37088 | 'div', |
| 37089 | null, |
| 37090 | Re.createElement(u, { |
| 37091 | className: Jn()({ invalid: i.length }), |
| 37092 | title: i.length ? stringifyObjectErrors(i).join(', ') : '', |
| 37093 | value: stringify(o), |
| 37094 | disabled: a, |
| 37095 | onChange: this.handleOnChange, |
| 37096 | }) |
| 37097 | ) |
| 37098 | ) |
| 37099 | } |
| 37100 | } |
| 37101 | function valueOrEmptyList(s) { |
nothing calls this directly
no test coverage detected