fix lint error

This commit is contained in:
Keith Grant 2020-08-31 10:12:52 -07:00
parent 4a616d9f81
commit c700d07a0a

View File

@ -40,8 +40,8 @@ function ArrayTextField(props) {
{...rest}
{...field}
value={value.join('\n')}
onChange={value => {
helpers.setValue(value.split('\n').map(v => v.trim()));
onChange={val => {
helpers.setValue(val.split('\n').map(v => v.trim()));
}}
/>
</FormGroup>