Skip to content

Commit

Permalink
Edit breadcrumb
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvin SAURAYE committed Nov 23, 2023
1 parent 4569999 commit cd2df32
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/views/bouquets/BouquetDetailView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ onMounted(() => {
breadcrumbLinks.value.push(
{
text: theme,
to: `/?theme=${theme.value}`
to: `/bouquets/?theme=${theme.value}`
},
{
text: subtheme.value,
to: `/?theme=${theme.value}&subtheme=${subtheme.value}`
to: `/bouquets/?theme=${theme.value}&subtheme=${subtheme.value}`
},
{
text: bouquet.value.name
Expand All @@ -108,8 +108,9 @@ onMounted(() => {
<template>
<div class="fr-container--fluid fr-mt-4w fr-mb-4w">
<DsfrBreadcrumb :links="breadcrumbLinks" class="fr-mb-2w" />
<DsfrButton
class="backToPage fr-pl-0"
class="backToPage fr-pl-0 fr-mb-2w"
@click.prevent="goBack"
:tertiary="true"
:no-outline="true"
Expand All @@ -127,7 +128,6 @@ onMounted(() => {
</svg>
Revenir aux résultats
</DsfrButton>
<DsfrBreadcrumb :links="breadcrumbLinks" />
<div class="bouquet__header fr-mb-4w">
<div class="bouquet__header__left">
<h3 class="fr-mb-3w fr-mb-md-0 fr-mr-md-3w">{{ bouquet.name }}</h3>
Expand Down Expand Up @@ -272,8 +272,6 @@ onMounted(() => {
text-align: center;
}
}
}
.btn-copy {
display: block;
Expand Down

0 comments on commit cd2df32

Please sign in to comment.