Skip to content

Commit

Permalink
Source | Making sure HEAD summary load is delayed
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Oct 25, 2021
1 parent c6da9ea commit 8e2e31a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/sources/SourceHome.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class SourceHome extends React.Component {
selectedConfig: defaultCustomConfig || SOURCE_DEFAULT_CONFIG,
customConfigs: customConfigs,
}, () => {
this.fetchSummary()
setTimeout(() => this.fetchSummary(), 8000) // Fixme: Summary to load later than the search results -- Sunny
const tab = this.getDefaultTabIndex()
if(tab === 0)
this.setTab()
Expand Down

0 comments on commit 8e2e31a

Please sign in to comment.