mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 06:27:19 +01:00
option label is just for additional information
This commit is contained in:
@@ -10,7 +10,7 @@ export default (props) => {
|
|||||||
className={props.name}
|
className={props.name}
|
||||||
onChange={props.onchange.bind(null, props.name)}
|
onChange={props.onchange.bind(null, props.name)}
|
||||||
>
|
>
|
||||||
{options.map((option) => <option label={option.name} value={option.value} key={option.value}/>)}
|
{options.map((option) => <option value={option.value} key={option.value}>{option.name}</option>)}
|
||||||
</select>
|
</select>
|
||||||
</label>
|
</label>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user