diff --git a/package.json b/package.json index e1306cd..90ac52d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "synfrastructure", - "version": "6.0.1", + "version": "6.0.2", "description": "A collection of highly reusable React components paired with sass utilities and mixins for speedy UI development", "author": "Synapse Studios", "license": "MIT", diff --git a/src/select.jsx b/src/select.jsx index ddf59f3..175113c 100644 --- a/src/select.jsx +++ b/src/select.jsx @@ -57,7 +57,7 @@ let Select = React.createClass({ const selectedOption = this.props.options.findIndex(option => !! option.selected); if (selectedOption < 0) { - return null; + return ''; } return this.props.options[selectedOption].value;