mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 17:05:43 +01:00
Fix key property for empty option
This commit is contained in:
@@ -54,7 +54,7 @@ class Select extends React.Component<Props> {
|
|||||||
>
|
>
|
||||||
{options.map(opt => {
|
{options.map(opt => {
|
||||||
return (
|
return (
|
||||||
<option value={opt.value} key={opt.value}>
|
<option value={opt.value} key={"KEY_" + opt.value}>
|
||||||
{opt.label}
|
{opt.label}
|
||||||
</option>
|
</option>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user