Skip to content
This repository has been archived by the owner on May 28, 2018. It is now read-only.

Commit

Permalink
Change default PEPITE select to all PEPITE
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrohee committed Jul 20, 2017
1 parent bdbbc59 commit 5e02bee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/admin/ApplicationFilterForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const ApplicationFilterForm = ({ onClearFilter, onFilter, filter, pepiteList, on
<FormGroup>
<ControlLabel>PEPITE</ControlLabel>
<FormControl name="pepite" componentClass="select" onChange={onChange} value={filter.pepite}>
<option value={0} disabled>Sélectionner</option>
<option value={0}>Toutes les PEPITE</option>
{pepiteList.map((pepite) => { return (<option key={pepite._id} value={pepite._id}>PEPITE {pepite.name}</option>) })}
</FormControl>
</FormGroup>
Expand Down

0 comments on commit 5e02bee

Please sign in to comment.