Skip to content

Commit e5b04a8

Browse files
authored
Merge branch 'main' into feat/2024-tutorial-talk
2 parents 26bb25f + 3dcb252 commit e5b04a8

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

i18n/events/overview.i18n.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ export default genI18nMessages({
9191
speech: 'Speech',
9292
podcast: 'Podcast',
9393
activity: 'Activity',
94+
post_event: 'Post-Event Activity',
9495
},
9596
},
9697
'zh-hant': {
@@ -165,6 +166,7 @@ export default genI18nMessages({
165166
speech: '大會演講',
166167
podcast: '線上廣播',
167168
activity: '會中活動',
169+
post_event: '會後活動',
168170
},
169171
},
170172
})

pages/events/overview.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export default {
5454
eventInfos: [
5555
{
5656
tag: 'sprint',
57-
eventTag: 'warmup',
57+
eventTag: 'post_event',
5858
tagColor: 'orange',
5959
imgUrl: require('~/static/img/events/overview/sprint.png'),
6060
imgAlt: 'Sprint',

store/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ export const state = () => ({
1919
showSponsorPage: true,
2020
showRegistrationPage: true,
2121
showEventOverviewPage: true,
22-
showEventsPage: false,
22+
showEventsPage: true,
2323
showConferencePage: true,
2424
showVenuePage: true,
2525
showProposalSystemPage: true,
2626
showIndexSponsorSection: true,
2727
showIndexSecondaryBtn: true,
2828
aboutHideItems: ['apacCommunity'], // ['pycontw', 'apacCommunity', 'history', 'community', 'codeOfConduct']
29-
eventsHideItems: [], // ['sprints', 'openSpaces', 'jobs']
29+
eventsHideItems: ['sprints', 'openSpaces'], // ['sprints', 'openSpaces', 'jobs']
3030
conferenceHideItems: ['panelDiscussion'], // ['keynotes', 'talks', 'tutorials', 'panelDiscussion']
3131
registrationHideItems: [], // ['tickets', 'financialAid']
3232
venueHideItems: [], // ['venueInfo', 'accommodation']

0 commit comments

Comments
 (0)