Skip to content
Snippets Groups Projects
Unverified Commit a34694d1 authored by Sameer Al-Sakran's avatar Sameer Al-Sakran Committed by GitHub
Browse files

Merge pull request #7446 from metabase/fix-explore-polling

In /explore make sure we poll candidates even when providing a db id
parents a72b2484 4daca912
No related branches found
No related tags found
No related merge requests found
......@@ -87,11 +87,11 @@ export default class PostSetupApp extends Component {
this._loadCandidates();
});
}
this._pollTimer = setInterval(
this._loadCandidates,
CANDIDATES_POLL_INTERVAL,
);
}
this._pollTimer = setInterval(
this._loadCandidates,
CANDIDATES_POLL_INTERVAL,
);
}
componentWillUnmount() {
this._clearTimers();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment