Skip to content

Commit

Permalink
[Dev Deps] pin eslint-plugin-react to v6.10.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Mar 19, 2017
1 parent f677d04 commit 0e68340
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -63,7 +63,7 @@
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-react": "6.10.0",
"git-directory-deploy": "^1.5.1",
"imports-loader": "^0.7.1",
"in-publish": "^2.0.0",
Expand Down
4 changes: 2 additions & 2 deletions src/components/DateRangePicker.jsx
Expand Up @@ -270,7 +270,7 @@ export default class DateRangePicker extends React.Component {
renderCalendarInfo={renderCalendarInfo}
/>

{withFullScreenPortal &&
{withFullScreenPortal && (
<button
className="DateRangePicker__close"
type="button"
Expand All @@ -283,7 +283,7 @@ export default class DateRangePicker extends React.Component {
{closeIcon}
</div>
</button>
}
)}
</div>
);
}
Expand Down
8 changes: 4 additions & 4 deletions src/components/DateRangePickerInput.jsx
Expand Up @@ -147,7 +147,7 @@ export default class DateRangePickerInput extends React.Component {
'DateRangePickerInput--disabled': disabled,
})}
>
{(showDefaultInputIcon || customInputIcon !== null) &&
{(showDefaultInputIcon || customInputIcon !== null) && (
<button
type="button"
aria-label={phrases.focusStartDate}
Expand All @@ -156,7 +156,7 @@ export default class DateRangePickerInput extends React.Component {
>
{inputIcon}
</button>
}
)}

<DateInput
id={startDateId}
Expand Down Expand Up @@ -194,7 +194,7 @@ export default class DateRangePickerInput extends React.Component {
onKeyDownTab={onEndDateTab}
/>

{showClearDates &&
{showClearDates && (
<button
type="button"
className={cx('DateRangePickerInput__clear-dates', {
Expand All @@ -212,7 +212,7 @@ export default class DateRangePickerInput extends React.Component {
{closeIcon}
</div>
</button>
}
)}
</div>
);
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/DayPickerNavigation.jsx
Expand Up @@ -80,15 +80,15 @@ export default function DayPickerNavigation(props) {

return (
<div className={navClassNames}>
{!isVerticalScrollable &&
{!isVerticalScrollable && (
<span
aria-label={phrases.jumpToPrevMonth}
className={prevClassNames}
onClick={onPrevMonthClick}
>
{navPrevIcon}
</span>
}
)}

<span
aria-label={phrases.jumpToNextMonth}
Expand Down
4 changes: 2 additions & 2 deletions src/components/SingleDatePicker.jsx
Expand Up @@ -344,7 +344,7 @@ export default class SingleDatePicker extends React.Component {
renderCalendarInfo={renderCalendarInfo}
/>

{withFullScreenPortal &&
{withFullScreenPortal && (
<button
className="SingleDatePicker__close"
type="button"
Expand All @@ -357,7 +357,7 @@ export default class SingleDatePicker extends React.Component {
{closeIcon}
</div>
</button>
}
)}
</div>
);
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/SingleDatePickerInput.jsx
Expand Up @@ -119,7 +119,7 @@ export default class SingleDatePickerInput extends React.Component {
onKeyDownTab={onKeyDownTab}
/>

{showClearDate &&
{showClearDate && (
<button
type="button"
className={cx('SingleDatePickerInput__clear-date', {
Expand All @@ -135,7 +135,7 @@ export default class SingleDatePickerInput extends React.Component {
{closeIcon}
</div>
</button>
}
)}
</div>
);
}
Expand Down

0 comments on commit 0e68340

Please sign in to comment.