Fix route conflict: move offer detail page to /offers/detail/[offerId]
All checks were successful
Build Docker Image / build (push) Successful in 3m18s
All checks were successful
Build Docker Image / build (push) Successful in 3m18s
- Change theme from cmyk to cupcake - Move [offerId].vue to detail/[offerId].vue to avoid conflict with [productId]/index.vue - Update all navigation references to use new /catalog/offers/detail/ path
This commit is contained in:
@@ -74,7 +74,7 @@
|
||||
:start-name="item.name"
|
||||
:end-name="hub?.name"
|
||||
:kyc-profile-uuid="getOfferData(item.uuid)?.kycProfileUuid"
|
||||
@select="navigateTo(localePath(`/catalog/offers/${item.uuid}`))"
|
||||
@select="navigateTo(localePath(`/catalog/offers/detail/${item.uuid}`))"
|
||||
/>
|
||||
</template>
|
||||
|
||||
|
||||
@@ -94,7 +94,7 @@
|
||||
:key="offer.uuid"
|
||||
padding="md"
|
||||
interactive
|
||||
@click="navigateTo(localePath(`/catalog/offers/${offer.uuid}`))"
|
||||
@click="navigateTo(localePath(`/catalog/offers/detail/${offer.uuid}`))"
|
||||
>
|
||||
<Stack gap="3">
|
||||
<Stack gap="1">
|
||||
|
||||
Reference in New Issue
Block a user