This commit is contained in:
Norbert de Langen 2020-03-16 09:55:12 +01:00
parent db3d8fd06a
commit 88b02419d5
No known key found for this signature in database
GPG Key ID: 976651DA156C2825

View File

@ -115,7 +115,7 @@ storiesOf('Basics/Form/Textarea', module)
.add('height', () => (
<Spaced>
{[undefined, 200, 600].map(height => (
<Flexed key={align} label={height.toString()}>
<Flexed key={height.toString()} label={height.toString()}>
<Textarea defaultValue="textarea" size="100%" height={height} />
</Flexed>
))}