Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 67b7069

Browse files
committed
prettier on DatePickerRange
1 parent 3f0d2ce commit 67b7069

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/DatePickerRange.react.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'react-dates/initialize';
22
import {DateRangePicker} from 'react-dates';
33
import PropTypes from 'prop-types';
4-
import React, {Component} from 'react'
4+
import React, {Component} from 'react';
55
import uniqid from 'uniqid';
66

77
import convertToMoment from '../utils/convertToMoment';
@@ -24,9 +24,9 @@ export default class DatePickerRange extends Component {
2424
this.onDatesChange = this.onDatesChange.bind(this);
2525
this.isOutsideRange = this.isOutsideRange.bind(this);
2626
this.state = {
27-
focused: false,
28-
start_date_id: props.start_date_id || uniqid(),
29-
end_date_id: props.end_date_id || uniqid()
27+
focused: false,
28+
start_date_id: props.start_date_id || uniqid(),
29+
end_date_id: props.end_date_id || uniqid(),
3030
};
3131
}
3232

@@ -108,7 +108,7 @@ export default class DatePickerRange extends Component {
108108
style,
109109
className,
110110
start_date_id,
111-
end_date_id
111+
end_date_id,
112112
} = this.props;
113113

114114
const {initial_visible_month} = convertToMoment(this.props, [

0 commit comments

Comments
 (0)