1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-23 01:13:22 -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 (
<div>
<SelectField
floatingLabelText="Source"
floatingLabelText="Donation source"
value={source}
onChange={onChange}
fullWidth
autoWidth
>
<MenuItem value={null} primaryText="" />
{items}
</SelectField>
</div>