diff --git a/ui/src/core/ui/pages/main_page.tsx b/ui/src/core/ui/pages/main_page.tsx index fe60d70..4754053 100644 --- a/ui/src/core/ui/pages/main_page.tsx +++ b/ui/src/core/ui/pages/main_page.tsx @@ -1,9 +1,9 @@ +import React from "react"; import { DatasetsScreenPath } from "../../../features/dataset/dataset_screen"; import { Icon } from "../icons/icons"; import { useNavigate } from "react-router-dom"; import { Spin } from "antd"; import { LoadingOutlined } from "@ant-design/icons"; -import React from "react"; import { SceneManagerPath } from "../../../features/scene_manager/presentation/scene_manager"; import { AssemblesScreenPath } from "../../../features/assembles/assembles_screen"; import { SimulationScreenPath } from "../../../features/simulations/simulations_screen"; @@ -12,6 +12,7 @@ import { BehaviorTreeBuilderPath } from "../../../features/behavior_tree_builder import { CalculationInstanceScreenPath as SkillScreenPath } from "../../../features/calculation_instance/presentation/calculation_instance_screen"; import { UiBaseError } from "../../model/ui_base_error"; import { DetailsScreenPath } from "../../../features/details/details_screen"; +import { BehaviorTreeManagerScreenPath } from "../../../features/behavior_tree_manager/behavior_tree_manager_screen"; export interface IBlockProps { name: string; isActive: boolean; @@ -66,7 +67,7 @@ export const MainPage = (props: IMainPageProps) => { { name: "Датасеты", path: DatasetsScreenPath, icon: "Datasets" }, { name: "Сцена", path: SceneManagerPath, icon: "Scene" }, { name: "Вычисления", path: SkillScreenPath, icon: "Layers" }, - { name: "Поведение", path: BehaviorTreeBuilderPath(), icon: "Rocket" }, + { name: "Поведение", path: BehaviorTreeManagerScreenPath, icon: "Rocket" }, { name: "Симуляция", path: SimulationScreenPath, icon: "Simulation" }, { name: "Оценка", path: EstimateScreenPath, icon: "Grade" }, ];