diff --git a/client/src/components/menubar/index.js b/client/src/components/menubar/index.js
index 0a6a1047..d36a4b23 100644
--- a/client/src/components/menubar/index.js
+++ b/client/src/components/menubar/index.js
@@ -48,6 +48,7 @@ import { getEmbSubsetView } from "../../util/stateManager/viewStackHelpers";
tosURL: state.config?.parameters?.about_legal_tos,
privacyURL: state.config?.parameters?.about_legal_privacy,
categoricalSelection: state.categoricalSelection,
+ dotplotEnabled: true /* TODO(colinmegill) #632 wire dotplot*/,
};
})
class MenuBar extends React.PureComponent {
@@ -194,6 +195,8 @@ class MenuBar extends React.PureComponent {
dispatch(actions.resetSubsetAction());
};
+ handleDotplotToggle = () => {};
+
render() {
const {
dispatch,
@@ -211,6 +214,7 @@ class MenuBar extends React.PureComponent {
subsetResetPossible,
userInfo,
auth,
+ dotplotEnabled,
} = this.props;
const { pendingClipPercentiles } = this.state;
@@ -258,6 +262,26 @@ class MenuBar extends React.PureComponent {
this.handleClipPercentileMinValueChange
}
/>
+
+
+