Skip to content

Commit

Permalink
Fix more linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
weltenwort committed Dec 15, 2016
1 parent 778d3ce commit 46d8472
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/core_plugins/kibana/public/context/api/anchor.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import _ from 'lodash';

import {addComputedFields} from './utils/fields';
import {createAnchorQuery} from './utils/queries';
import { addComputedFields } from './utils/fields';
import { createAnchorQuery } from './utils/queries';


async function fetchAnchor(es, indexPattern, uid, sort) {
Expand Down
8 changes: 4 additions & 4 deletions src/core_plugins/kibana/public/context/api/context.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import _ from 'lodash';

import {addComputedFields} from './utils/fields';
import {getDocumentUid} from './utils/ids';
import {createSuccessorsQuery} from './utils/queries.js';
import {reverseQuerySort} from './utils/sorting';
import { addComputedFields } from './utils/fields';
import { getDocumentUid } from './utils/ids';
import { createSuccessorsQuery } from './utils/queries.js';
import { reverseQuerySort } from './utils/sorting';


async function fetchSuccessors(es, indexPattern, anchorDocument, sort, size) {
Expand Down
2 changes: 1 addition & 1 deletion src/core_plugins/kibana/public/context/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import uiRoutes from 'ui/routes';
import './app';
import {getDocumentUid} from './api/utils/ids';
import { getDocumentUid } from './api/utils/ids';


uiRoutes
Expand Down
6 changes: 3 additions & 3 deletions src/core_plugins/kibana/public/context/query.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import _ from 'lodash';

import {fetchAnchor} from './api/anchor';
import {fetchPredecessors, fetchSuccessors} from './api/context';
import {createSelector, started} from './dispatch';
import { fetchAnchor } from './api/anchor';
import { fetchPredecessors, fetchSuccessors } from './api/context';
import { createSelector, started } from './dispatch';
import {
QueryParameterActionCreatorsProvider,
selectPredecessorCount,
Expand Down

0 comments on commit 46d8472

Please sign in to comment.