Merge with 2.0.0-m3

This commit is contained in:
René Pfeuffer
2019-01-31 10:41:07 +01:00
135 changed files with 5997 additions and 1630 deletions

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>
);