Skip to content

Commit

Permalink
fix(ui): left menu is blinking on blueprint page
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Jan 24, 2025
1 parent ae2d555 commit 6bc66d6
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion ui/src/override/components/useLeftMenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,25 @@ export function useLeftMenu() {
}
},
{
href: {name: "blueprints", params: {kind: "flow"}},
routes: routeStartWith("blueprints"),
title: t("blueprints.title"),
icon: {
element: shallowRef(BallotOutline),
class: "menu-icon"
},
child: [
{
title: t("flows"),
routes: routeStartWith("blueprints/flow"),
icon: {
element: shallowRef(FileTreeOutline),
class: "menu-icon"
},
href: {name: "blueprints", params: {kind: "flow"}},
},
{
title: t("homeDashboard.title"),
routes: routeStartWith("blueprints/dashboard"),
icon: {
element: shallowRef(ViewDashboardVariantOutline),
class: "menu-icon"
Expand Down

0 comments on commit 6bc66d6

Please sign in to comment.