diff --git a/docs/app/composables/useContentNavigation.ts b/docs/app/composables/useContentNavigation.ts index 6346c201..579a2b40 100644 --- a/docs/app/composables/useContentNavigation.ts +++ b/docs/app/composables/useContentNavigation.ts @@ -37,10 +37,14 @@ export const useContentNavigation = (navigation: Ref { + if (child.path.startsWith('/components')) { + return true + } + if (child.framework && child.framework !== framework.value) { return false } - if (child.module && child.module !== module.value && !child.path.startsWith('/components')) { + if (child.module && child.module !== module.value) { return false } return true