Add Datasource Name filter under slice list view (#4000)

This commit is contained in:
Grace Guo 2017-12-04 13:45:36 -08:00 committed by GitHub
parent eff5952641
commit 89f6ccc1c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -420,7 +420,7 @@ class SliceModelView(SupersetModelView, DeleteMixin): # noqa
'datasource_link': _('Datasource'),
}
search_columns = (
'slice_name', 'description', 'viz_type', 'owners',
'slice_name', 'description', 'viz_type', 'datasource_name', 'owners',
)
list_columns = [
'slice_link', 'viz_type', 'datasource_link', 'creator', 'modified']