Skip to content

Commit

Permalink
fix(browse): fix browse double click issue (#4382)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe-lyons authored Mar 11, 2022
1 parent fab9c23 commit 7eb0017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datahub-web-react/src/app/browse/BrowseResultsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const BrowseResultsPage = () => {
<LegacyBrowsePath type={entityType} path={path} isBrowsable />
</Affix>
{loading && <Message type="loading" content="Loading..." style={{ marginTop: '10%' }} />}
{data && data.browse && (
{data && data.browse && !loading && (
<BrowseResults
type={entityType}
rootPath={rootPath}
Expand Down

0 comments on commit 7eb0017

Please sign in to comment.