mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 22:38:48 +00:00
Hide result when suggesting data source (#3034)
This commit is contained in:
parent
6ea8b225cb
commit
537b18ae47
1 changed files with 1 additions and 1 deletions
|
|
@ -270,7 +270,7 @@ class DataSourceManager extends React.Component {
|
|||
))}
|
||||
</>
|
||||
)}
|
||||
{this.state.queryString && this.state.filteredDatasources.length === 0 && (
|
||||
{!suggestingDatasources && this.state.queryString && this.state.filteredDatasources.length === 0 && (
|
||||
<div className="empty-state-wrapper row">
|
||||
<EmptyStateContainer
|
||||
queryString={this.state.queryString}
|
||||
|
|
|
|||
Loading…
Reference in a new issue