This commit is contained in:
cha0s 2020-06-21 20:37:16 -05:00
parent d2e26d3727
commit 622f32015f

View File

@ -19,7 +19,7 @@ const Number = ({
? (
<select readOnly value={value}>
{Object.entries(options).map(([optionValue, optionLabel]) => (
<option value={optionValue}>{optionLabel}</option>
<option key={optionValue}>{optionLabel}</option>
))}
</select>
)