Skip to content

Commit b1b0a15

Browse files
committed
fix: 配信状態の文言を削除
1 parent 499937f commit b1b0a15

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

app/components/TopPageSection.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
{{ eventDate }}
2020
</p>
2121
</div>
22-
<p class="text-[5.7vw] font-bold text-center text-vue-blue md:text-[2.5rem]">
22+
<p v-if="LIVE_YOUTUBE" class="text-[5.7vw] font-bold text-center text-vue-blue md:text-[2.5rem]">
2323
{{ streamingNow }}
2424
</p>
2525
<div class="flex flex-wrap gap-x-[3.125rem] gap-y-4 justify-center mt-4 mb-12 md:gap-y-7 lg:gap-y-7 lg:mt-6">
@@ -69,6 +69,7 @@
6969
<script setup lang="ts">
7070
import TweetButtonField from '~/components/forms/customize/TweetButtonField.vue'
7171
import { conferenceTitle, eventDate, streamingNow, tracks, tweetLabel, tweetUrl } from '~/utils/constants'
72+
import { LIVE_YOUTUBE } from '~/utils/feature.constants'
7273
import TopAnimation from '~/components/TopAnimation.vue'
7374
7475
const tweet = () => {

app/utils/feature.constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ export const SHOW_EVENT_SPEAKER_PROFILE_VUE = false
88
export const SHOW_EVENT_SPEAKER_PROFILE_PEEPHOLE = true
99
export const SHOW_TIMETABLE = true
1010
export const SHOW_SPONSOR_SESSION = true
11+
export const LIVE_YOUTUBE = false

0 commit comments

Comments
 (0)