You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by be...@apache.org on 2019/12/17 19:18:24 UTC

[incubator-superset] 01/03: Add toast presenter

This is an automated email from the ASF dual-hosted git repository.

beto pushed a commit to branch VIZ-1230
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git

commit aff6d01c3b3989a107be24b095d68b7aff050aa6
Author: Beto Dealmeida <ro...@dealmeida.net>
AuthorDate: Tue Dec 17 11:14:18 2019 -0800

    Add toast presenter
---
 superset/assets/src/welcome/App.jsx | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/superset/assets/src/welcome/App.jsx b/superset/assets/src/welcome/App.jsx
index e1898eb..5e12bc1 100644
--- a/superset/assets/src/welcome/App.jsx
+++ b/superset/assets/src/welcome/App.jsx
@@ -28,6 +28,7 @@ import { initEnhancer } from '../reduxUtils';
 import setupApp from '../setup/setupApp';
 import Welcome from './Welcome';
 import Menu from '../components/Menu/Menu';
+import ToastPresenter from '../messageToasts/containers/ToastPresenter';
 
 setupApp();
 
@@ -51,6 +52,7 @@ const App = () => (
       <Switch>
         <Route path="/superset/welcome">
           <Welcome user={user} />
+          <ToastPresenter />
         </Route>
       </Switch>
     </Router>