Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e011c90

Browse files
authored
restoring space in dropdown
1 parent 04f4776 commit e011c90

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

views/model-dropdown.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ export default React.createClass({
4545
render() {
4646
const models = this.state.models.sort((a, b) => a.description > b.description);
4747
const options = models.map(m => <option value={m.name} key={m.name}>{m.description.replace(/\.$/, '')}
48+
{' '}
4849
({m.rate / 1000}KHz)</option>);
4950

5051
return (

0 commit comments

Comments
 (0)