Skip to content

Commit bdebc72

Browse files
committed
fix: add navigation store to ProjectHeader.vue
1 parent 47fc497 commit bdebc72

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

apps/web/src/components/project/details/ProjectHeader.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,16 @@
2727
<script setup lang="ts">
2828
import { Color, Project } from '@/types'
2929
import type { DsfrBreadcrumbProps } from '@gouvminint/vue-dsfr'
30+
import { useNavigationStore } from '@/stores/navigation'
3031
3132
interface Props {
3233
project: Project
3334
themeColor?: Color
3435
}
3536
const props = defineProps<Props>()
3637
38+
const navigationStore = useNavigationStore()
39+
3740
const links = ref<DsfrBreadcrumbProps['links']>([{ text: props.project.title }])
3841
</script>
3942

0 commit comments

Comments
 (0)