Skip to content

Commit

Permalink
[hotfix] timeseries_limit_metric: Not a valid choice
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Oct 21, 2016
1 parent 5c3966a commit 7dfe891
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion caravel/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,8 @@ def __init__(self, viz):
}),
'timeseries_limit_metric': (SelectField, {
"label": _("Sort By"),
"choices": datasource.metrics_combo,
"choices": [('', '')] + datasource.metrics_combo,
"default": "",
"description": _("Metric used to define the top series")
}),
'rolling_type': (SelectField, {
Expand Down

0 comments on commit 7dfe891

Please sign in to comment.