Fix SUPERSET_WEBSERVER_TIMEOUT in VisualizeModal (#4277)

* Fix SUPERSET_WEBSERVER_TIMEOUT in VisualizeModal

* Fix test

* lint
This commit is contained in:
Maxime Beauchemin
2018-01-24 16:08:48 -08:00
committed by GitHub
parent ff2f85f39b
commit 914480ad3c
2 changed files with 2 additions and 2 deletions

View File

@@ -294,7 +294,7 @@ function mapStateToProps(state) {
return {
datasource: state.datasource,
errorMessage: state.errorMessage,
timeout: state.common ? state.common.SUPERSET_WEBSERVER_TIMEOUT : null,
timeout: state.common ? state.common.conf.SUPERSET_WEBSERVER_TIMEOUT : null,
};
}