Skip to content

Commit 1fe8407

Browse files
committed
fix imports
1 parent d496001 commit 1fe8407

17 files changed

+18
-18
lines changed

frontend/javascripts/oxalis/api/api_latest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ import {
176176
callDeep,
177177
createGroupToSegmentsMap,
178178
moveGroupsHelper,
179-
} from "oxalis/view/right-border-tabs/tree_hierarchy_view_helpers";
179+
} from "oxalis/view/right-border-tabs/trees_tab/tree_hierarchy_view_helpers";
180180
import type { Versions } from "oxalis/view/version_view";
181181
// @ts-expect-error ts-migrate(7016) FIXME: Could not find a declaration file for module 'twee... Remove this comment to see the full error message
182182
import TWEEN from "tween.js";

frontend/javascripts/oxalis/model/accessors/skeletontracing_accessor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import type {
1616
import {
1717
MISSING_GROUP_ID,
1818
findGroup,
19-
} from "oxalis/view/right-border-tabs/tree_hierarchy_view_helpers";
19+
} from "oxalis/view/right-border-tabs/trees_tab/tree_hierarchy_view_helpers";
2020
import type {
2121
APIAnnotation,
2222
AnnotationLayerDescriptor,

frontend/javascripts/oxalis/model/accessors/volumetracing_accessor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import type { SegmentHierarchyNode } from "oxalis/view/right-border-tabs/segment
4545
import {
4646
MISSING_GROUP_ID,
4747
getGroupByIdWithSubgroups,
48-
} from "oxalis/view/right-border-tabs/tree_hierarchy_view_helpers";
48+
} from "oxalis/view/right-border-tabs/trees_tab/tree_hierarchy_view_helpers";
4949
import type {
5050
APIAnnotation,
5151
APIAnnotationInfo,

frontend/javascripts/oxalis/model/helpers/compaction/compact_toggle_actions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
MISSING_GROUP_ID,
1515
createGroupToTreesMap,
1616
getGroupByIdWithSubgroups,
17-
} from "oxalis/view/right-border-tabs/tree_hierarchy_view_helpers";
17+
} from "oxalis/view/right-border-tabs/trees_tab/tree_hierarchy_view_helpers";
1818
type GroupNode = {
1919
children: GroupNode[];
2020
groupId: number | null | undefined;

frontend/javascripts/oxalis/model/helpers/nml_helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import type {
3232
TreeGroup,
3333
UserBoundingBox,
3434
} from "oxalis/store";
35-
import { findGroup } from "oxalis/view/right-border-tabs/tree_hierarchy_view_helpers";
35+
import { findGroup } from "oxalis/view/right-border-tabs/trees_tab/tree_hierarchy_view_helpers";
3636
// @ts-expect-error ts-migrate(7016) FIXME: Could not find a declaration file for module 'saxo... Remove this comment to see the full error message
3737
import Saxophone from "saxophone";
3838
import type { APIBuildInfo, MetadataEntryProto } from "types/api_flow_types";

frontend/javascripts/oxalis/model/reducers/skeletontracing_reducer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import type { OxalisState, SkeletonTracing, Tree, TreeGroup } from "oxalis/store
4545
import {
4646
GroupTypeEnum,
4747
getNodeKey,
48-
} from "oxalis/view/right-border-tabs/tree_hierarchy_view_helpers";
48+
} from "oxalis/view/right-border-tabs/trees_tab/tree_hierarchy_view_helpers";
4949
import type { MetadataEntryProto } from "types/api_flow_types";
5050
import { userSettings } from "types/schemas/user_settings.schema";
5151

frontend/javascripts/oxalis/model/reducers/volumetracing_reducer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ import type {
5656
import {
5757
findParentIdForGroupId,
5858
getGroupNodeKey,
59-
} from "oxalis/view/right-border-tabs/tree_hierarchy_view_helpers";
59+
} from "oxalis/view/right-border-tabs/trees_tab/tree_hierarchy_view_helpers";
6060
import type { AdditionalCoordinate, ServerVolumeTracing } from "types/api_flow_types";
6161
import { mapGroups } from "../accessors/skeletontracing_accessor";
6262
import { sanitizeMetadata } from "./skeletontracing_reducer";

frontend/javascripts/oxalis/view/right-border-tabs/segments_tab/segments_view.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ import {
135135
getExpandedGroups,
136136
getGroupByIdWithSubgroups,
137137
getGroupNodeKey,
138-
} from "../tree_hierarchy_view_helpers";
138+
} from "../trees_tab/tree_hierarchy_view_helpers";
139139
import { SegmentStatisticsModal } from "./segment_statistics_modal";
140140

141141
const SCROLL_DELAY_MS = 50;

frontend/javascripts/oxalis/view/right-border-tabs/trees_tab/skeleton_tab_view.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,15 @@ import Store from "oxalis/store";
7979
import ButtonComponent from "oxalis/view/components/button_component";
8080
import DomVisibilityObserver from "oxalis/view/components/dom_visibility_observer";
8181
import InputComponent from "oxalis/view/components/input_component";
82+
import TreeHierarchyView from "oxalis/view/right-border-tabs/trees_tab/tree_hierarchy_view";
8283
import {
8384
GroupTypeEnum,
8485
MISSING_GROUP_ID,
8586
additionallyExpandGroup,
8687
callDeep,
8788
createGroupToParentMap,
8889
createGroupToTreesMap,
89-
} from "oxalis/view/right-border-tabs/tree_hierarchy_view_helpers";
90-
import TreeHierarchyView from "oxalis/view/right-border-tabs/trees_tab/tree_hierarchy_view";
90+
} from "oxalis/view/right-border-tabs/trees_tab/tree_hierarchy_view_helpers";
9191
import * as React from "react";
9292
import { connect } from "react-redux";
9393
import type { Dispatch } from "redux";

frontend/javascripts/oxalis/view/right-border-tabs/trees_tab/tree_hierarchy_renderers.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ import {
5252
getGroupByIdWithSubgroups,
5353
getNodeKey,
5454
makeBasicGroupObject,
55-
} from "oxalis/view/right-border-tabs/tree_hierarchy_view_helpers";
55+
} from "oxalis/view/right-border-tabs/trees_tab/tree_hierarchy_view_helpers";
5656
import { ColoredDotIcon } from "../segments_tab/segment_list_item";
5757
import { HideTreeEdgesIcon } from "./hide_tree_edges_icon";
5858

0 commit comments

Comments
 (0)