File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ class Selector extends React.Component {
13
13
return (
14
14
< select
15
15
className = { this . props . cssClasses . root }
16
+ defaultValue = { currentValue }
16
17
onChange = { handleChange }
17
- value = { currentValue }
18
18
>
19
19
{ options . map ( ( option ) => {
20
20
return < option className = { this . props . cssClasses . item } key = { option . value } value = { option . value } > { option . label } </ option > ;
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ describe('Selector', () => {
29
29
expect ( out ) . toEqualJSX (
30
30
< select
31
31
className = "custom-root"
32
+ defaultValue = "index-a"
32
33
onChange = { ( ) => { } }
33
- value = "index-a"
34
34
>
35
35
< option className = "custom-item" value = "index-a" > Index A</ option >
36
36
< option className = "custom-item" value = "index-b" > Index B</ option >
@@ -50,8 +50,8 @@ describe('Selector', () => {
50
50
expect ( out ) . toEqualJSX (
51
51
< select
52
52
className = "custom-root"
53
+ defaultValue = { 10 }
53
54
onChange = { ( ) => { } }
54
- value = { 10 }
55
55
>
56
56
< option className = "custom-item" value = { 10 } > 10 results per page</ option >
57
57
< option className = "custom-item" value = { 20 } > 20 results per page</ option >
You can’t perform that action at this time.
0 commit comments