mirror of
https://github.com/apache/superset.git
synced 2026-04-10 11:55:24 +00:00
serve roboto font locally (#2519)
* serve roboto locally * add trailing comma * fix long line for linter
This commit is contained in:
@@ -19,8 +19,8 @@ class QueryAutoRefresh extends React.PureComponent {
|
||||
const { queries } = this.props;
|
||||
const queryKeys = Object.keys(queries);
|
||||
const queriesAsArray = queryKeys.map(key => queries[key]);
|
||||
return queriesAsArray.some(
|
||||
q => ['running', 'started', 'pending', 'fetching'].indexOf(q.state) >= 0);
|
||||
return queriesAsArray.some(q =>
|
||||
['running', 'started', 'pending', 'fetching'].indexOf(q.state) >= 0);
|
||||
}
|
||||
startTimer() {
|
||||
if (!(this.timer)) {
|
||||
|
||||
Reference in New Issue
Block a user