@@ -111,6 +111,10 @@ function hasOneShowingChild(
return true;
});
+ if (showingChildren[0]?.meta?.showParent) {
+ return false;
+ }
+
if (showingChildren.length === 1) {
}
@@ -67,6 +67,7 @@ export type childrenType = {
icon?: string;
title?: string;
i18n?: boolean;
+ showParent?: boolean;
extraIcon?: {
svg?: boolean;
name?: string;