Skip to content

Commit

Permalink
Migrate relative paths to absolute: src/components/shared part 1 (PR #…
Browse files Browse the repository at this point in the history
  • Loading branch information
gregtatum committed Oct 13, 2020
2 parents 4f82905 + 9cd176c commit 4b3b615
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/shared/CallNodeContextMenu.js
Expand Up @@ -5,7 +5,7 @@
// @flow
import React, { PureComponent, Fragment } from 'react';
import { MenuItem } from 'react-contextmenu';
import ContextMenu from '../shared/ContextMenu';
import ContextMenu from 'firefox-profiler/components/shared/ContextMenu';
import explicitConnect from 'firefox-profiler/utils/connect';
import { funcHasRecursiveCall } from 'firefox-profiler/profile-logic/transforms';
import { getFunctionName } from 'firefox-profiler/profile-logic/function-info';
Expand All @@ -14,19 +14,19 @@ import {
addTransformToStack,
expandAllCallNodeDescendants,
setContextMenuVisibility,
} from '../../actions/profile-view';
} from 'firefox-profiler/actions/profile-view';
import {
getSelectedTab,
getImplementationFilter,
getInvertCallstack,
} from '../../selectors/url-state';
import { getRightClickedCallNodeInfo } from '../../selectors/right-clicked-call-node';
import { getThreadSelectorsFromThreadsKey } from '../../selectors/per-thread';
} from 'firefox-profiler/selectors/url-state';
import { getRightClickedCallNodeInfo } from 'firefox-profiler/selectors/right-clicked-call-node';
import { getThreadSelectorsFromThreadsKey } from 'firefox-profiler/selectors/per-thread';

import {
convertToTransformType,
assertExhaustiveCheck,
} from '../../utils/flow';
} from 'firefox-profiler/utils/flow';

import type {
TransformType,
Expand All @@ -38,8 +38,8 @@ import type {
ThreadsKey,
} from 'firefox-profiler/types';

import type { TabSlug } from '../../app-logic/tabs-handling';
import type { ConnectedProps } from '../../utils/connect';
import type { TabSlug } from 'firefox-profiler/app-logic/tabs-handling';
import type { ConnectedProps } from 'firefox-profiler/utils/connect';

type StateProps = {|
+thread: Thread | null,
Expand Down

0 comments on commit 4b3b615

Please sign in to comment.