Make label clearer and get rid of null value.

This commit is contained in:
Drew Larson
2017-05-23 19:27:57 -06:00
parent 38b2b8c0a3
commit 274c8ed5e4
@@ -25,12 +25,11 @@ const Source = ({ source, onChange }) => {
return (
<div>
<SelectField
floatingLabelText="Source"
floatingLabelText="Donation source"
value={source}
onChange={onChange}
fullWidth
autoWidth
>
<MenuItem value={null} primaryText="" />
{items}
</SelectField>
</div>