From 143169c44f3cfca3038f809b37c7c99b1c5710a0 Mon Sep 17 00:00:00 2001 From: Tim Cosgrove Date: Mon, 7 Oct 2024 11:48:30 -0700 Subject: [PATCH 1/3] Add the dev env vars. (#785) --- envs/.env.dev | 3 +++ 1 file changed, 3 insertions(+) diff --git a/envs/.env.dev b/envs/.env.dev index e0e2f93ba..77d7dc457 100644 --- a/envs/.env.dev +++ b/envs/.env.dev @@ -22,4 +22,7 @@ NEXT_PUBLIC_GOOGLE_TAG_MANAGER_PREVIEW=env-423 # Feature flags for enabling content types. These should only be added when you are preparing to go to prod and are testing on dev. # It is better to test these from the CMS backend for dev than here. +FEATURE_NEXT_BUILD_CONTENT_EVENT_LISTING=true +FEATURE_NEXT_BUILD_CONTENT_EVENT=true + From 22171601ffccd835910cb1fd3976bb53420df769 Mon Sep 17 00:00:00 2001 From: JR Reed Date: Tue, 8 Oct 2024 11:37:19 -0400 Subject: [PATCH 2/3] Removed show all times after it is clicked (#777) --- src/templates/layouts/event/index.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/templates/layouts/event/index.tsx b/src/templates/layouts/event/index.tsx index 63293a6c3..61faf7088 100644 --- a/src/templates/layouts/event/index.tsx +++ b/src/templates/layouts/event/index.tsx @@ -303,12 +303,14 @@ export const Event = ({ {formattedDates.length > 5 && (
- + {!showAllEvents && ( + + )}
)} From 8ca14940e2cd52f0158c90383c0eabf252ca0597 Mon Sep 17 00:00:00 2001 From: Therisa Tran <146353301+ttran-Therisa@users.noreply.github.com> Date: Tue, 8 Oct 2024 13:00:01 -0400 Subject: [PATCH 3/3] PR: QA Fixes #783,#784, #19413 (#788) --- src/templates/layouts/event/index.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/templates/layouts/event/index.tsx b/src/templates/layouts/event/index.tsx index 61faf7088..8a8a8a2b5 100644 --- a/src/templates/layouts/event/index.tsx +++ b/src/templates/layouts/event/index.tsx @@ -196,14 +196,16 @@ export const Event = ({ )} {/* Registration */} - {registrationRequired && ( + {registrationRequired && eventCTA && (

{eventCTA == 'register' && Registration:} - {eventCTA == 'apply' && Apply:} + {eventCTA == 'apply' && Application:} {eventCTA == 'rsvp' && RSVP:}

-

Required

+ {eventCTA != 'more_details' && ( +

Required

+ )}
)}
@@ -228,7 +230,7 @@ export const Event = ({ {link && (

- {eventCTA + {eventCTA && eventCTA != 'more_details' ? eventCTA.toLowerCase() === 'rsvp' ? eventCTA.toUpperCase() : eventCTA.charAt(0).toUpperCase() + eventCTA.slice(1)