Skip to content

Commit

Permalink
Remove unnecessary import
Browse files Browse the repository at this point in the history
  • Loading branch information
Maja Grubic committed Jun 16, 2021
1 parent b3a72f8 commit cb0c395
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import html from './doc_table.html';
import { dispatchRenderComplete } from '../../../../../kibana_utils/public';
import { SAMPLE_SIZE_SETTING, SHOW_MULTIFIELDS } from '../../../../common';
import { SAMPLE_SIZE_SETTING } from '../../../../common';
// @ts-expect-error
import { getLimitedSearchResultsMessage } from './doc_table_strings';
import { getServices } from '../../../kibana_services';
Expand Down Expand Up @@ -40,7 +40,6 @@ export function createDocTableDirective(pagerFactory: any, $filter: any) {
onRemoveColumn: '=?',
inspectorAdapters: '=?',
useNewFieldsApi: '<',
showMultiFields: '<',
},
link: ($scope: LazyScope, $el: JQuery) => {
$scope.persist = {
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/discover/server/ui_settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export const getUiSettings: () => Record<string, UiSettingsParams> = () => ({
},
[SHOW_MULTIFIELDS]: {
name: i18n.translate('discover.advancedSettings.discover.showMultifields', {
defaultMessage: 'Show multi fields',
defaultMessage: 'Show multi-fields',
}),
description: i18n.translate('discover.advancedSettings.discover.showMultifieldsDescription', {
defaultMessage: `When enabled will show multi fields in document viewer. In majority of cases, multi-fields are the same as regular fields. This option is only available when searchFieldsFromSource is off. `,
Expand Down

0 comments on commit cb0c395

Please sign in to comment.