Skip to content

Commit

Permalink
chore(NA): move home, usage_collection and management to lodash 3
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Jun 24, 2020
1 parent bf18a6c commit f86e858
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import _ from 'lodash4';
import _ from 'lodash3';
import React from 'react';
import PropTypes from 'prop-types';
import { EuiFlexGrid, EuiFlexItem } from '@elastic/eui';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import _ from 'lodash4';
import _ from 'lodash3';
import React from 'react';
import PropTypes from 'prop-types';
import { Footer } from './footer';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import _ from 'lodash4';
import _ from 'lodash3';
import React from 'react';
import PropTypes from 'prop-types';
import { Synopsis } from './synopsis';
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/home/public/application/load_tutorials.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import _ from 'lodash4';
import _ from 'lodash3';
import { getServices } from './kibana_services';
import { i18n } from '@kbn/i18n';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/
import { schema } from '@kbn/config-schema';
import _ from 'lodash4';
import _ from 'lodash3';
import { IRouter } from 'src/core/server';
import { SampleDatasetSchema } from '../lib/sample_dataset_registry_types';
import { createIndexName } from '../lib/create_index_name';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import { get } from 'lodash4';
import { get } from 'lodash3';
import moment from 'moment';

interface SearchHit {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import React, { useState } from 'react';
import { i18n } from '@kbn/i18n';
import { sortBy } from 'lodash4';
import { sortBy } from 'lodash3';

import { EuiIcon, EuiSideNav, EuiScreenReaderOnly, EuiSideNavItemType } from '@elastic/eui';
import { AppMountParameters } from 'kibana/public';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import { noop } from 'lodash4';
import { noop } from 'lodash3';
import { Collector } from './collector';
import { CollectorSet } from './collector_set';
import { UsageCollector } from './usage_collector';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import { snakeCase } from 'lodash4';
import { snakeCase } from 'lodash3';
import { Logger, APICaller } from 'kibana/server';
import { Collector, CollectorOptions } from './collector';
import { UsageCollector } from './usage_collector';
Expand Down

0 comments on commit f86e858

Please sign in to comment.