From 3003f39e34be39498f0582afaf654c018c4da24e Mon Sep 17 00:00:00 2001 From: Junyan Qin Date: Sun, 27 Apr 2025 16:48:27 +0800 Subject: [PATCH] perf: reorder sidebar --- .../home/components/home-sidebar/sidbarConfigList.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/web_ui/src/app/home/components/home-sidebar/sidbarConfigList.ts b/web_ui/src/app/home/components/home-sidebar/sidbarConfigList.ts index ff78a281..4c83ea79 100644 --- a/web_ui/src/app/home/components/home-sidebar/sidbarConfigList.ts +++ b/web_ui/src/app/home/components/home-sidebar/sidbarConfigList.ts @@ -13,16 +13,16 @@ export const sidebarConfigList = [ icon: "", route: "/home/bots", }), + new SidebarChildVO({ + id: "pipelines", + name: "流水线", + icon: "", + route: "/home/pipelines", + }), new SidebarChildVO({ id: "plugins", name: "插件管理", icon: "", route: "/home/plugins", }), - new SidebarChildVO({ - id: "pipelines", - name: "流水线", - icon: "", - route: "/home/pipelines", - }) ]