fix Array value types to string

This commit is contained in:
do7be 2018-10-10 10:48:10 +09:00
parent d1cae5e729
commit c51b1ebf53

View File

@ -28,7 +28,9 @@ class ArrayType extends React.Component {
render() {
const { knob } = this.props;
return <Textarea id={knob.name} value={knob.value} onChange={this.handleChange} size="flex" />;
const value = knob.value.join(knob.separator);
return <Textarea id={knob.name} value={value} onChange={this.handleChange} size="flex" />;
}
}