Skip to content

Commit

Permalink
Revert daterange fix #39
Browse files Browse the repository at this point in the history
  • Loading branch information
joepio committed May 23, 2019
1 parent d2a2baa commit e69b84b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions front/src/Components/FiltersBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface FiltersbarProps {
display: boolean;
}

const startDate = new Date(2000, 1);
// const startDate = new Date(2000, 1);

const MunicipalityLabel = (label: string, count: number, isSelected: boolean) =>
<span>
Expand Down Expand Up @@ -67,10 +67,10 @@ const Filtersbar: React.FunctionComponent<FiltersbarProps> = (props) => {
start: "Van...",
end: "Tot...",
}}
defaultValue={{
start: startDate,
end: new Date(Date.now()),
}}
// defaultValue={{
// start: startDate,
// end: new Date(Date.now()),
// }}
numberOfMonths={2}
queryFormat="date"
autoFocusEnd={false}
Expand Down

0 comments on commit e69b84b

Please sign in to comment.