Merge pull request #8006 from christophe-g/8005-liElement-array-property-breaks-storybook-knobs-when-when-value-is-undefined

Addon-knobs: Handle undefined array value
This commit is contained in:
Michael Shilman 2019-09-26 11:47:17 -07:00 committed by GitHub
commit 38e018d28b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,7 @@ export default class ArrayType extends Component<ArrayTypeProps> {
render() {
const { knob } = this.props;
const value = knob.value.join(knob.separator);
const value = knob.value && knob.value.join(knob.separator);
return (
<Form.Textarea