summaryrefslogtreecommitdiff
path: root/src/redux/github/actions.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/redux/github/actions.js')
-rw-r--r--src/redux/github/actions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/redux/github/actions.js b/src/redux/github/actions.js
index 73dba10..2f84c6f 100644
--- a/src/redux/github/actions.js
+++ b/src/redux/github/actions.js
@@ -14,7 +14,7 @@ const transformFilters = (filters) => {
const startMoment = moment(filters.dateRange.start);
const endMoment = moment(filters.dateRange.end);
- const reposDate = `created:${startMoment.format('YYYY-MM-DD')}..${endMoment.format('YYYY-MM-DD')}`;
+ const reposDate = `created:${startMoment.format()}..${endMoment.format()}`;
const reposLanguage = filters.language ? `language:${filters.language} ` : '';
if (filters.token) {