From 136f9abeff245e2f03b963597e5e1703b640c6a8 Mon Sep 17 00:00:00 2001 From: jorgep Date: Mon, 2 Sep 2024 13:39:13 +0200 Subject: [PATCH] chore: refs #6900 rollback --- src/components/LeftMenu.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/LeftMenu.vue b/src/components/LeftMenu.vue index 4261dad2f..03fe11a85 100644 --- a/src/components/LeftMenu.vue +++ b/src/components/LeftMenu.vue @@ -61,7 +61,7 @@ function addChildren(module, route, parent) { const matches = findMatches(mainMenus, route); for (const child of matches) { - if (!child.meta.hidden) navigation.addMenuItem(module, child, parent); + navigation.addMenuItem(module, child, parent); } } }