Fix not showing loading indicator when searching in web UI (#17655)
This commit is contained in:
parent
0883f05753
commit
cb2e198d89
2 changed files with 5 additions and 3 deletions
|
@ -104,7 +104,7 @@ class Results extends React.PureComponent {
|
|||
</div>
|
||||
|
||||
<div className='explore__search-results'>
|
||||
{isLoading ? (<LoadingIndicator />) : filteredResults}
|
||||
{isLoading ? <LoadingIndicator /> : filteredResults}
|
||||
</div>
|
||||
</React.Fragment>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue