Skip to content

Commit

Permalink
Fix APM lodash imports
Browse files Browse the repository at this point in the history
  • Loading branch information
smith committed Sep 24, 2020
1 parent d571358 commit f6b95de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import cytoscape from 'cytoscape';
import dagre from 'cytoscape-dagre';
import isEqual from 'lodash/isEqual';
import { isEqual } from 'lodash';
import React, {
createContext,
CSSProperties,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

import cytoscape from 'cytoscape';
import debounce from 'lodash/debounce';
import { debounce } from 'lodash';
import { useEffect } from 'react';
import { EuiTheme, useUiTracker } from '../../../../../observability/public';
import { getAnimationOptions, getNodeHeight } from './cytoscapeOptions';
Expand Down

0 comments on commit f6b95de

Please sign in to comment.