serve roboto font locally (#2519)

* serve roboto locally

* add trailing comma

* fix long line for linter
This commit is contained in:
Alanna Scott
2017-04-03 13:05:13 -07:00
committed by GitHub
parent 0c0666caa0
commit dcc6f2a18f
6 changed files with 9 additions and 10 deletions

View File

@@ -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)) {