Fix failing test

This commit is contained in:
Kyle Shockey
2017-11-29 19:21:20 -06:00
parent 8d1d15ca4a
commit 5224932cf9
3 changed files with 5 additions and 5 deletions

View File

@@ -183,7 +183,7 @@ export class Select extends React.Component {
{ allowEmptyValue ? <option value="">--</option> : null }
{
allowedValues.map(function (item, key) {
return <option key={ key } value={ String(item) }>{ item }</option>
return <option key={ key } value={ String(item) }>{ String(item) }</option>
})
}
</select>