Skip to content

Commit

Permalink
switching logic from show to hideShareLinks
Browse files Browse the repository at this point in the history
  • Loading branch information
stephiescastle committed Dec 6, 2024
1 parent 135f683 commit 2f362a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const BaseStory = {
url: 'http://localhost:3000/topics/mars'
}
],
showShareLinks: true,
hideShareLinks: false,
topper: '',
readTime: '2 min read',
summary:
Expand Down Expand Up @@ -116,7 +116,8 @@ export const HeroVideo = {
blockType: 'VideoBlock',
video: BaseVideoData,
caption: 'Lorem ipsum dolor sit amet',
credit: 'NASA/JPL'
credit: 'NASA/JPL',
autoplay: true
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@

<!-- share buttons -->
<LayoutHelper
v-if="data.showShareLinks"
v-if="!data.hideShareLinks"
indent="col-2"
class="lg:mb-0 relative mb-8"
>
Expand Down

0 comments on commit 2f362a5

Please sign in to comment.