Skip to content

Commit

Permalink
sort props to pass linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jbadan committed Oct 1, 2019
1 parent 303015a commit bb2bace
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 32 deletions.
41 changes: 11 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/DatePicker/DatePicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,11 +339,11 @@ class DatePicker extends Component {
}
disableAfterDate={disableAfterDate}
disableBeforeDate={disableBeforeDate}
disabledDates={disabledDates}
disableFutureDates={disableFutureDates}
disablePastDates={disablePastDates}
disableWeekday={disableWeekday}
disableWeekends={disableWeekends}
disabledDates={disabledDates}
enableRangeSelection={enableRangeSelection}
onChange={this.updateDate}
ref={this.calendarRef} />
Expand Down
2 changes: 1 addition & 1 deletion src/SearchInput/SearchInput.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ describe('<SearchInput />', () => {
element.find('input').getDOMNode().attributes['data-sample'].value
).toBe('Sample');

element = mount(<SearchInput inShellbar inputProps={{ 'data-sample': 'Sample1' }} />);
element = mount(<SearchInput inputProps={{ 'data-sample': 'Sample1' }} inShellbar />);

expect(
element.find('input').getDOMNode().attributes['data-sample'].value
Expand Down

0 comments on commit bb2bace

Please sign in to comment.