Skip to content
Snippets Groups Projects
Commit 8fd55726 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

refeseq and structure navigation true but filtered from it

parent 626c2a10
No related branches found
No related tags found
No related merge requests found
Pipeline #117601 passed with stages
in 8 minutes and 45 seconds
...@@ -13,18 +13,18 @@ import { useDisplay, useTheme } from "vuetify"; ...@@ -13,18 +13,18 @@ import { useDisplay, useTheme } from "vuetify";
const { navigation } = useContent(); const { navigation } = useContent();
// const drawer = ref(true); // const drawer = ref(true);
// const computedNavigation = computed(() => { const computedNavigation = computed(() => {
// return navigation.value return navigation.value
// .filter(({ _path }) => { .filter(({ _path }) => {
// return _path !== "/refseq"; return _path !== "/refseq" || _path !== "/predicted-structure";
// }) })
// }); });
</script> </script>
<template> <template>
<v-navigation-drawer :model-value="drawer" :border="1" color="background"> <v-navigation-drawer :model-value="drawer" :border="1" color="background">
<v-list nav density="compact" :lines="false"> <v-list nav density="compact" :lines="false">
<NavNavigation :navigation="navigation" /> <NavNavigation :navigation="computedNavigation" />
</v-list> </v-list>
</v-navigation-drawer> </v-navigation-drawer>
</template> </template>
\ No newline at end of file
--- ---
layout: db layout: db
navigation: false
--- ---
::refseq-db ::refseq-db
:: ::
--- ---
layout: db layout: db
navigation: false
--- ---
::structure-db ::structure-db
:: ::
\ No newline at end of file
...@@ -6,8 +6,6 @@ const facetStore = useFacetsStore() ...@@ -6,8 +6,6 @@ const facetStore = useFacetsStore()
</script> </script>
<template> <template>
<LayoutWrapper :fluid="true" :toc="false" :edit="false" :nav-drawer="false"> <LayoutWrapper :fluid="true" :toc="false" :edit="false" :nav-drawer="false">
<slot /> <slot />
</LayoutWrapper> </LayoutWrapper>
</template> </template>
......
<template> <template>
<v-card-text>
<v-card-text> <ContentDoc />
<ContentDoc /> </v-card-text>
</v-card-text>
</template> </template>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment