Skip to content

Commit 1dda12a

Browse files
Alexandre Stanislawskiredox
Alexandre Stanislawski
authored andcommittedNov 5, 2015
fix(selector): makes component as uncontrolled component
1 parent 68adc0d commit 1dda12a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎components/Selector.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ class Selector extends React.Component {
1313
return (
1414
<select
1515
className={this.props.cssClasses.root}
16+
defaultValue={currentValue}
1617
onChange={handleChange}
17-
value={currentValue}
1818
>
1919
{options.map((option) => {
2020
return <option className={this.props.cssClasses.item} key={option.value} value={option.value}>{option.label}</option>;

‎components/__tests__/Selector-test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ describe('Selector', () => {
2929
expect(out).toEqualJSX(
3030
<select
3131
className="custom-root"
32+
defaultValue="index-a"
3233
onChange={() => {}}
33-
value="index-a"
3434
>
3535
<option className="custom-item" value="index-a">Index A</option>
3636
<option className="custom-item" value="index-b">Index B</option>
@@ -50,8 +50,8 @@ describe('Selector', () => {
5050
expect(out).toEqualJSX(
5151
<select
5252
className="custom-root"
53+
defaultValue={10}
5354
onChange={() => {}}
54-
value={10}
5555
>
5656
<option className="custom-item" value={10}>10 results per page</option>
5757
<option className="custom-item" value={20}>20 results per page</option>

0 commit comments

Comments
 (0)
Please sign in to comment.