Skip to content

Commit

Permalink
eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
flash1293 committed Oct 3, 2019
1 parent c0b100f commit 456dc39
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describe('search_bar', () => {
onIndexPatternSelected: () => {},
onQuerySubmit: querySubmit,
currentIndexPattern: { title: 'Testpattern' } as IndexPattern,
coreStart: {} as CoreStart
coreStart: {} as CoreStart,
})
);
act(() => {
Expand All @@ -73,7 +73,7 @@ describe('search_bar', () => {
onIndexPatternSelected: () => {},
onQuerySubmit: querySubmit,
currentIndexPattern: { title: 'Testpattern', fields: [{ name: 'test' }] } as IndexPattern,
coreStart: {} as CoreStart
coreStart: {} as CoreStart,
})
);
act(() => {
Expand All @@ -99,7 +99,7 @@ describe('search_bar', () => {
onIndexPatternSelected: indexPatternSelected,
onQuerySubmit: () => {},
currentIndexPattern: { title: 'Testpattern' } as IndexPattern,
coreStart: {} as CoreStart
coreStart: {} as CoreStart,
})
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import React, { useState } from 'react';
import { i18n } from '@kbn/i18n';
import { fromKueryExpression, toElasticsearchQuery } from '@kbn/es-query';
import { IDataPluginServices } from 'src/legacy/core_plugins/data/public/types';
import { CoreStart } from 'kibana/public';
import {
QueryBarInput,
Query,
Expand All @@ -18,7 +19,6 @@ import {
import { IndexPatternSavedObject } from '../types/app_state';
import { openSourceModal } from '../services/source_modal';
import { useKibana } from '../../../../../../src/plugins/kibana_react/public';
import { CoreStart } from 'kibana/public';

export interface SearchBarProps {
coreStart: CoreStart;
Expand Down

0 comments on commit 456dc39

Please sign in to comment.