@@ -57,9 +57,9 @@ storiesOf('Picker', module)
57
57
'default' ,
58
58
( ) => (
59
59
< Picker label = "Test" onSelectionChange = { action ( 'selectionChange' ) } >
60
- < Item key = "rarely " > Short</ Item >
61
- < Item key = "sometimes " > Normal</ Item >
62
- < Item key = "always " > This item is very long and word wraps poorly</ Item >
60
+ < Item key = "Short " > Short</ Item >
61
+ < Item key = "Normal " > Normal</ Item >
62
+ < Item key = "This item is very long and word wraps poorly " > This item is very long and word wraps poorly</ Item >
63
63
</ Picker >
64
64
)
65
65
)
@@ -205,7 +205,7 @@ storiesOf('Picker', module)
205
205
( ) => (
206
206
< Picker label = "Test" isQuiet labelAlign = "end" onSelectionChange = { action ( 'selectionChange' ) } >
207
207
< Item key = "One" > One</ Item >
208
- < Item key = "two " > Two dollary-doos</ Item >
208
+ < Item key = "Two dollary-doos " > Two dollary-doos</ Item >
209
209
< Item key = "Three" > Three</ Item >
210
210
</ Picker >
211
211
)
@@ -598,9 +598,9 @@ function ResizePicker() {
598
598
< Flex direction = "column" gap = "size-200" alignItems = "start" >
599
599
< div style = { { width : state ? '200px' : '300px' } } >
600
600
< Picker label = "Choose A" width = "100%" >
601
- < Item key = "rarely " > A1</ Item >
602
- < Item key = "sometimes " > A2</ Item >
603
- < Item key = "always " > A3</ Item >
601
+ < Item key = "A1 " > A1</ Item >
602
+ < Item key = "A2 " > A2</ Item >
603
+ < Item key = "A3 " > A3</ Item >
604
604
</ Picker >
605
605
</ div >
606
606
< ActionButton onPress = { ( ) => setState ( ! state ) } > Toggle size</ ActionButton >
0 commit comments