Fix key property for empty option

This commit is contained in:
René Pfeuffer
2019-01-25 12:48:04 +01:00
parent 6f97bd56d3
commit 39a9615189

View File

@@ -54,7 +54,7 @@ class Select extends React.Component<Props> {
>
{options.map(opt => {
return (
<option value={opt.value} key={opt.value}>
<option value={opt.value} key={"KEY_" + opt.value}>
{opt.label}
</option>
);