Skip to content

Commit 146c9bf

Browse files
committed
Fix slido for keynoters
1 parent 1b9b4ac commit 146c9bf

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

frontend/src/pages/keynotes/[slug]/index.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ const KeynotePage = () => {
2020
const {
2121
data: {
2222
conference: {
23+
talk: {
24+
slidoUrl,
25+
},
2326
keynote: {
2427
title,
2528
description,
@@ -69,6 +72,7 @@ const KeynotePage = () => {
6972
speakers={speakers}
7073
rooms={rooms.map((room) => room.name)}
7174
youtubeVideoId={youtubeVideoId}
75+
slidoUrl={slidoUrl}
7276
/>
7377
</Page>
7478
);

frontend/src/pages/keynotes/keynote.graphql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
query Keynote($conference: String!, $slug: String!, $language: String!) {
22
conference(code: $conference) {
33
id
4+
talk(slug: $slug) {
5+
id
6+
slidoUrl
7+
}
48
keynote(slug: $slug) {
59
id
610
title(language: $language)

0 commit comments

Comments
 (0)