diff --git a/pages/[sectionSlug]/[articleSlug].vue b/pages/[sectionSlug]/[articleSlug].vue index a4f3e40e..6d8a8fd5 100644 --- a/pages/[sectionSlug]/[articleSlug].vue +++ b/pages/[sectionSlug]/[articleSlug].vue @@ -104,6 +104,9 @@ const getGalleryLink = computed(() => { const showMarketingBanner = computed(() => { return marketingBannerData.value[0]?.location === 'BOTTOM' }) + +const tagName = computed(() => article?.sponsoredContent ? "Sponsored" : article?.section?.name ) +const tagSlug = computed(() => article?.sponsoredContent ? "" : `/${article?.section?.slug}` )