Skip to content

Commit

Permalink
fix #660
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenFang committed Aug 27, 2016
1 parent dba268d commit b84861c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filters/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class SelectFilter extends Component {
<option key='-1' value=''>{ placeholder || `Select ${columnName}...` }</option>
));
Object.keys(options).map(key => {
optionTags.push(<option key={ key } value={ key }>{ options[key] }</option>);
optionTags.push(<option key={ key } value={ key }>{ options[key] + '' }</option>);
});
return optionTags;
}
Expand Down

0 comments on commit b84861c

Please sign in to comment.