[sql lab] fix user timestamp is off (#2774)

This commit is contained in:
Maxime Beauchemin
2017-05-17 15:34:19 -07:00
committed by GitHub
parent cbfe3cb2dc
commit dbc7fef7f5
2 changed files with 5 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ class QueryAutoRefresh extends React.PureComponent {
stopwatch() {
// only poll /superset/queries/ if there are started or running queries
if (this.shouldCheckForQueries()) {
const url = '/superset/queries/' + (this.props.queriesLastUpdate - QUERY_UPDATE_BUFFER_MS);
const url = `/superset/queries/${this.props.queriesLastUpdate - QUERY_UPDATE_BUFFER_MS}`;
$.getJSON(url, (data) => {
if (Object.keys(data).length > 0) {
this.props.actions.refreshQueries(data);