Skip to content

Commit

Permalink
Fix display error in #89
Browse files Browse the repository at this point in the history
options=None led to entire STREETS_LAYOUT not displaying.
  • Loading branch information
radumas committed Dec 11, 2017
1 parent b76b9e7 commit ad27da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ def generate_figure(street, direction, day_type='Weekday', period='AMPK',
clearable=False),
title='Select a date range type to filter table data'),
html.Span(dcc.Dropdown(id=CONTROLS['date_range'],
options=generate_date_ranges(),
options=generate_date_ranges(range_type=2),
value = 1,
clearable=False),
id=CONTROLS['date_range_span'],
Expand Down

0 comments on commit ad27da0

Please sign in to comment.