Skip to content

Commit

Permalink
Change default to false
Browse files Browse the repository at this point in the history
  • Loading branch information
vera-liu committed Dec 5, 2016
1 parent 89ce757 commit dd966a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion superset/assets/javascripts/explorev2/stores/store.js
Expand Up @@ -1465,7 +1465,7 @@ export const fields = {
table_filter: {
type: 'CheckboxField',
label: 'Table Filter',
default: true,
default: false,
description: 'Whether to apply filter when table cell is clicked',
},

Expand Down
2 changes: 1 addition & 1 deletion superset/forms.py
Expand Up @@ -786,7 +786,7 @@ def __init__(self, viz):
}),
'table_filter': (BetterBooleanField, {
"label": _("Table Filter"),
"default": True,
"default": False,
"description": _(
"Whether to apply filter when table cell is clicked")
}),
Expand Down

0 comments on commit dd966a9

Please sign in to comment.