From 4840d1db78bbfd63fa94940454580647f908c049 Mon Sep 17 00:00:00 2001 From: rockleona <34214497+rockleona@users.noreply.github.com> Date: Mon, 12 Aug 2024 18:57:02 +0800 Subject: [PATCH] feat(navbar): close cfp item on navbar --- store/index.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/store/index.js b/store/index.js index 29d10a583d..29fc68b96e 100644 --- a/store/index.js +++ b/store/index.js @@ -13,21 +13,21 @@ export const state = () => ({ conferenceName: 'PyCon TW', conferenceYear: '2024', conferenceDate: '2024-09-21', - showSpeakingPage: true, showAboutStaffPage: false, - showSchedulePage: false, - showSponsorPage: true, - showRegistrationPage: true, + showConferencePage: true, showEventOverviewPage: true, showEventsPage: true, - showConferencePage: true, - showVenuePage: true, - showProposalSystemPage: true, - showIndexSponsorSection: true, showIndexSecondaryBtn: true, + showIndexSponsorSection: true, + showProposalSystemPage: true, + showRegistrationPage: true, + showSchedulePage: false, + showSpeakingPage: false, + showSponsorPage: true, + showVenuePage: true, aboutHideItems: ['apacCommunity'], // ['pycontw', 'apacCommunity', 'history', 'community', 'codeOfConduct'] - eventsHideItems: ['sprints', 'openSpaces'], // ['sprints', 'openSpaces', 'jobs'] conferenceHideItems: ['panelDiscussion'], // ['keynotes', 'talks', 'tutorials', 'panelDiscussion'] + eventsHideItems: ['sprints', 'openSpaces'], // ['sprints', 'openSpaces', 'jobs'] registrationHideItems: [], // ['tickets', 'financialAid'] venueHideItems: [], // ['venueInfo', 'accommodation'] },