Browse Source

Make label clearer and get rid of null value.

feature/bike-tracking
Drew Larson 8 years ago
parent
commit
274c8ed5e4
  1. 5
      bikeshop_project/assets/js/bikes/components/Source/index.jsx

5
bikeshop_project/assets/js/bikes/components/Source/index.jsx

@ -25,12 +25,11 @@ const Source = ({ source, onChange }) => {
return ( return (
<div> <div>
<SelectField <SelectField
floatingLabelText="Source" floatingLabelText="Donation source"
value={source} value={source}
onChange={onChange} onChange={onChange}
fullWidth autoWidth
> >
<MenuItem value={null} primaryText="" />
{items} {items}
</SelectField> </SelectField>
</div> </div>

Loading…
Cancel
Save