Skip to content

Commit

Permalink
Remove some range presets, closes #2
Browse files Browse the repository at this point in the history
  • Loading branch information
andreynovikov committed Jan 21, 2019
1 parent ca3d822 commit 4015f45
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{% load i18n %}
ranges: {
'{% trans "Yesterday" %}': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
'{% trans "Today" %}': [moment(), moment()],
'{% trans "Tomorrow" %}': [moment().add(1, 'days'), moment().add(1, 'days')],
'{% trans "Day after tomorrow" %}': [moment().add(2, 'days'), moment().add(2, 'days')],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{% load i18n %}
ranges: {
'{% trans "Tomorrow" %}': [moment().add(1, 'days'), moment().add(1, 'days')],
'{% trans "Today" %}': [moment(), moment()],
'{% trans "Yesterday" %}': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
'{% trans "Day before yesterday" %}': [moment().subtract(2, 'days'), moment().subtract(2, 'days')],
Expand Down

0 comments on commit 4015f45

Please sign in to comment.