mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Fix for GDS blank screen on create (#6183)
This commit is contained in:
parent
ec8e560af1
commit
466cdc4dc5
1 changed files with 2 additions and 2 deletions
|
|
@ -190,7 +190,7 @@ class DataSourceManagerComponent extends React.Component {
|
|||
{ position: 'top-center' }
|
||||
);
|
||||
this.props.dataSourcesChanged(false, selectedDataSource);
|
||||
this.props.globalDataSourcesChanged();
|
||||
this.props.globalDataSourcesChanged && this.props.globalDataSourcesChanged();
|
||||
})
|
||||
.catch(({ error }) => {
|
||||
this.setState({ isSaving: false });
|
||||
|
|
@ -217,7 +217,7 @@ class DataSourceManagerComponent extends React.Component {
|
|||
{ position: 'top-center' }
|
||||
);
|
||||
this.props.dataSourcesChanged(false, data);
|
||||
this.props.globalDataSourcesChanged();
|
||||
this.props.globalDataSourcesChanged && this.props.globalDataSourcesChanged();
|
||||
})
|
||||
.catch(({ error }) => {
|
||||
this.setState({ isSaving: false });
|
||||
|
|
|
|||
Loading…
Reference in a new issue