From 08f02651b6df6ba518a064d952fde8b24eb47206 Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick <23kilpatrick23@gmail.com> Date: Fri, 7 Aug 2020 07:01:25 -0700 Subject: [PATCH 1/3] Update LiveTalksPlaceholder.tsx Addin in Link to the YouTube playlist. Does this look okay? --- src/components/live/LiveTalksPlaceholder.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/live/LiveTalksPlaceholder.tsx b/src/components/live/LiveTalksPlaceholder.tsx index 8243997b..d7f0abc9 100644 --- a/src/components/live/LiveTalksPlaceholder.tsx +++ b/src/components/live/LiveTalksPlaceholder.tsx @@ -42,7 +42,7 @@ export const LiveTalksPlaceholder = () => { case isBeforeConference: return "The conference hasn't started yet."; case isAfterConference: - return "The conference is now over. Thank you to everyone who made this JuliaCon awesome!"; + return "The conference is now over. Thank you to everyone who made this JuliaCon awesome! Visit the Julia Language's YouTube to watch all of the conference's talks, workshops, and keynotes."; case data?.talks?.length === 0: return "There are no talks scheduled for today."; case dayHasEnded: From 2da64a45d7c3e58e34292559bfe6fb159422f5ac Mon Sep 17 00:00:00 2001 From: Travis DePrato <773453+travigd@users.noreply.github.com> Date: Thu, 4 Feb 2021 11:29:53 -0800 Subject: [PATCH 2/3] Update LiveTalksPlaceholder.tsx --- src/components/live/LiveTalksPlaceholder.tsx | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/components/live/LiveTalksPlaceholder.tsx b/src/components/live/LiveTalksPlaceholder.tsx index d7f0abc9..d0478343 100644 --- a/src/components/live/LiveTalksPlaceholder.tsx +++ b/src/components/live/LiveTalksPlaceholder.tsx @@ -42,7 +42,20 @@ export const LiveTalksPlaceholder = () => { case isBeforeConference: return "The conference hasn't started yet."; case isAfterConference: - return "The conference is now over. Thank you to everyone who made this JuliaCon awesome! Visit the Julia Language's YouTube to watch all of the conference's talks, workshops, and keynotes."; + return ( + <> + The conference is now over. Thank you to everyone who made this + JuliaCon awesome! Visit + + the Julia Language's YouTube + + to watch all of the conference's talks, workshops, and keynotes. + + ); case data?.talks?.length === 0: return "There are no talks scheduled for today."; case dayHasEnded: From cacec9731b6217c541a7695250e324867eb9e2a3 Mon Sep 17 00:00:00 2001 From: Travis DePrato <773453+travigd@users.noreply.github.com> Date: Thu, 4 Feb 2021 11:33:19 -0800 Subject: [PATCH 3/3] Update LiveTalksPlaceholder.tsx --- src/components/live/LiveTalksPlaceholder.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/live/LiveTalksPlaceholder.tsx b/src/components/live/LiveTalksPlaceholder.tsx index d0478343..335d5acc 100644 --- a/src/components/live/LiveTalksPlaceholder.tsx +++ b/src/components/live/LiveTalksPlaceholder.tsx @@ -45,14 +45,14 @@ export const LiveTalksPlaceholder = () => { return ( <> The conference is now over. Thank you to everyone who made this - JuliaCon awesome! Visit + JuliaCon awesome! Visit{" "} the Julia Language's YouTube - + {" "} to watch all of the conference's talks, workshops, and keynotes. );