1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-23 09:13:23 -05:00

Make label clearer and get rid of null value.

This commit is contained in:
Drew Larson 2017-02-01 22:23:00 -06:00
parent 38b2b8c0a3
commit 274c8ed5e4

View File

@ -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>