Display all columns if none are specified. (#2077)

* Display all columns if none are specified.

* Update models.py

* Do not use column for the time series.

* Update models.py

* Update config.py
This commit is contained in:
Bogdan
2017-01-31 17:50:53 -08:00
committed by GitHub
parent 27aeac6859
commit ea8e4ad05b
4 changed files with 10 additions and 2 deletions

View File

@@ -564,7 +564,7 @@ class FormFactory(object):
}),
'row_limit': (FreeFormSelectField, {
"label": _('Row limit'),
"default": config.get("ROW_LIMIT"),
"default": config.get("VIZ_ROW_LIMIT"),
"choices": self.choicify(
[10, 50, 100, 250, 500, 1000, 5000, 10000, 50000])
}),