This is an automated email from the ASF dual-hosted git repository.
hugh pushed a commit to branch omnibar
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/omnibar by this push:
new 01f1a15 add omnibard interface to dashboard page
01f1a15 is described below
commit 01f1a150d9e594495f9dc2b47ec1f159bf237a90
Author: hughhhh <[email protected]>
AuthorDate: Wed Jan 23 18:36:19 2019 -0800
add omnibard interface to dashboard page
---
superset/assets/src/dashboard/components/Dashboard.jsx | 16 +++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)
diff --git a/superset/assets/src/dashboard/components/Dashboard.jsx
b/superset/assets/src/dashboard/components/Dashboard.jsx
index 989d8cd..1bd18ac 100644
--- a/superset/assets/src/dashboard/components/Dashboard.jsx
+++ b/superset/assets/src/dashboard/components/Dashboard.jsx
@@ -234,16 +234,14 @@ class Dashboard extends React.PureComponent {
}
render() {
- return (<div style={{display: "flex", flexDirection: "column"}}>
- <div style={{zValue: 2}}>
- <Modal show bsStyle="large">
- <OmniContianer />
- </Modal>
+ return (
+ <div>
+ <Modal show bsStyle="large">
+ <OmniContianer />
+ </Modal>
+ <DashboardBuilder />
</div>
- <div style={{zValue: -2}}>
- <DashboardBuilder />
- </div>
- </div>);
+ );
}
}