fixed linting errors on utils/time.js

old
Felipe Amorim 2016-03-09 11:07:16 -03:00
parent 16ed92693a
commit 756a3a9731
2 changed files with 3 additions and 3 deletions

View File

@ -9,12 +9,12 @@ class DatePicker extends React.Component {
static propTypes = {
className: React.PropTypes.string,
error: React.PropTypes.string,
inputFormat: React.PropTypes.func,
label: React.PropTypes.string,
maxDate: React.PropTypes.object,
minDate: React.PropTypes.object,
onChange: React.PropTypes.func,
value: React.PropTypes.object,
inputFormat: React.PropTypes.func
value: React.PropTypes.object
};
state = {

View File

@ -179,7 +179,7 @@ const time = {
formatDate (date) {
return `${date.getDate()} ${time.getFullMonth(date)} ${date.getFullYear()}`;
},
}
};
export default time;