This is an automated email from the ASF dual-hosted git repository.
amitmiran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new d55a040 feat(native-filters): hide filterBar and toggle icon when in
editMode (#13108)
d55a040 is described below
commit d55a040acdc5e029481ec35f4cd8f7fa2cb4aa06
Author: Amit Miran <[email protected]>
AuthorDate: Sun Feb 14 22:37:48 2021 +0200
feat(native-filters): hide filterBar and toggle icon when in editMode
(#13108)
---
superset-frontend/src/dashboard/components/DashboardBuilder.jsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset-frontend/src/dashboard/components/DashboardBuilder.jsx
b/superset-frontend/src/dashboard/components/DashboardBuilder.jsx
index 945d956..308ecfa 100644
--- a/superset-frontend/src/dashboard/components/DashboardBuilder.jsx
+++ b/superset-frontend/src/dashboard/components/DashboardBuilder.jsx
@@ -293,7 +293,7 @@ class DashboardBuilder extends React.Component {
className="dashboard-content"
dashboardFiltersOpen={this.state.dashboardFiltersOpen}
>
- {isFeatureEnabled(FeatureFlag.DASHBOARD_NATIVE_FILTERS) && (
+ {isFeatureEnabled(FeatureFlag.DASHBOARD_NATIVE_FILTERS) && !editMode
&& (
<StickyVerticalBar
filtersOpen={this.state.dashboardFiltersOpen}
topOffset={barTopOffset}