You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by am...@apache.org on 2021/02/14 20:38:41 UTC

[superset] branch master updated: feat(native-filters): hide filterBar and toggle icon when in editMode (#13108)

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 <47...@users.noreply.github.com>
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}