mirror of
https://github.com/vale981/Vulcan
synced 2025-03-04 17:21:37 -05:00
Fix labeling in select component.
This commit is contained in:
parent
2b1776ff02
commit
ceba15647c
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ const SelectComponent = ({ refFunction, inputProperties, itemProperties, datatyp
|
|||
<Components.FormItem path={inputProperties.path} label={inputProperties.label} {...itemProperties}>
|
||||
<Form.Control as="select" {...inputProperties} ref={refFunction}>
|
||||
{options.map((option, i) => (
|
||||
<option key={i} {...option}>{option.value}</option>
|
||||
<option key={i} {...option}>{option.label}</option>
|
||||
))}
|
||||
</Form.Control>
|
||||
</Components.FormItem>
|
||||
|
|
Loading…
Add table
Reference in a new issue