Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "[Sql Lab] Fix QueryAutoRefresh component pulling do not stop" #4302

Closed
wants to merge 20 commits into from
Closed
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
13f14fa
Revert "Fixing json decode error on druiddatasourcemodelview/api/read…
mistercrunch Jan 27, 2018
e6d22cd
Revert "[geo] Add JS controls to remaining layers (#4272)"
mistercrunch Jan 27, 2018
d1cdf15
Revert "Set point size control's default for deck_scatter viz (#4261)"
mistercrunch Jan 27, 2018
4067a0c
Revert "deck_multi to pass down filters to layers (#4270)"
mistercrunch Jan 27, 2018
31b2614
Revert "Handle 'pd.Timestamp' when jsonifying (#4275)"
mistercrunch Jan 27, 2018
095abc8
Revert "Prevent FilterBox extra query (#4276)"
mistercrunch Jan 27, 2018
86ac1fd
Revert "Fix SUPERSET_WEBSERVER_TIMEOUT in VisualizeModal (#4277)"
mistercrunch Jan 27, 2018
cb9b6be
Revert "[geo] JS function to receive the whole data array instead of …
mistercrunch Jan 27, 2018
f4dc3fe
Revert "Fix click on now in DateFilterControl (#4265)"
mistercrunch Jan 27, 2018
c4b2470
Revert "[explore] fix empty query message in 'View Query' (#4273)"
mistercrunch Jan 27, 2018
77e54a3
Revert "Always use fluid container for navbar. (#4279)"
mistercrunch Jan 27, 2018
40eaf2f
Revert "[BUGFIX]: Check datatype of results before converting to Data…
mistercrunch Jan 27, 2018
9c908cb
Revert "Use json for imports and exports, not pickle (#4243)"
mistercrunch Jan 27, 2018
bc8f2b5
Revert "Using a NullPool for external connections by default (#4251)"
mistercrunch Jan 27, 2018
9aa82f1
Revert "Set 'Range Filter' default to false (#4264)"
mistercrunch Jan 27, 2018
bcb133a
Revert "Fix heatmap tooltip disappears under the slice's header (#4268)"
mistercrunch Jan 27, 2018
083c72e
Revert "Bump flower==0.9.2 (#4263)"
mistercrunch Jan 27, 2018
fa08af6
Revert "[cache] Fixing json.dumps for timestamp (#4240)"
mistercrunch Jan 27, 2018
19f7b97
Revert "[Sql Lab] Fix query results display at the bottom of screen (…
mistercrunch Jan 27, 2018
f37aeb6
Revert "[Sql Lab] Fix Autorefresh component pulling not stopped. (#42…
mistercrunch Jan 27, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class QueryAutoRefresh extends React.PureComponent {
const queryKeys = Object.keys(queries);
const queriesAsArray = queryKeys.map(key => queries[key]);
return queriesAsArray.some(q =>
['running', 'started', 'pending', 'fetching'].indexOf(q.state) >= 0).length;
['running', 'started', 'pending', 'fetching'].indexOf(q.state) >= 0);
}
startTimer() {
if (!(this.timer)) {
Expand Down