mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
fix: add key for OneOfType
This commit is contained in:
parent
738a8c50a9
commit
c90b09eea1
@ -9,7 +9,10 @@ const OneOfType = ({ propType }) => {
|
||||
<span>
|
||||
{propType.value
|
||||
.map((value, i) => [
|
||||
<PrettyPropType propType={value} />,
|
||||
<PrettyPropType
|
||||
key={`${value.name}${value.value ? `-${value.value}` : ''}`}
|
||||
propType={value}
|
||||
/>,
|
||||
i < length - 1 ? <span> | </span> : null,
|
||||
])
|
||||
.reduce((acc, tuple) => acc.concat(tuple), [])}
|
||||
|
Loading…
x
Reference in New Issue
Block a user