We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcc5c23 commit 7c46712Copy full SHA for 7c46712
opendata.swiss/ui/pages/datasets/[datasetId]/distribution/[distributionId].vue
@@ -44,9 +44,10 @@ const distribution = computed(() => {
44
return dists
45
})
46
47
+const firstBreadcrumb = await homePageBreadcrumb(locale)
48
-const breadcrumbs = [
49
- await homePageBreadcrumb(locale),
+const breadcrumbs = computed(()=> [
50
+ firstBreadcrumb,
51
{
52
title: t('message.header.navigation.datasets'),
53
path: '/datasets',
@@ -61,7 +62,7 @@ const breadcrumbs = [
61
62
63
title: distribution.value?.title
64
}
-]
65
+])
66
67
useSeoMeta({
68
title: `${distribution.value?.title} | ${resultEnhanced.value?.getTitle} | ${t('message.header.navigation.datasets')} | opendata.swiss`,
0 commit comments