Skip to content

Commit

Permalink
fix(shared): display speakers in schedule detail.
Browse files Browse the repository at this point in the history
  • Loading branch information
GerardPaligot committed Oct 11, 2023
1 parent 65482f3 commit e3c794d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ selectSpeakersByTalkId:
SELECT Speaker.id, Speaker.display_name, Speaker.pronouns, Speaker.bio, Speaker.job_title, Speaker.company,
Speaker.photo_url, Speaker.twitter, Speaker.mastodon, Speaker.github, Speaker.linkedin, Speaker.website
FROM TalkSessionWithSpeakers
INNER JOIN Speaker ON TalkSessionWithSpeakers.talk_id = Speaker.id
INNER JOIN Speaker ON TalkSessionWithSpeakers.speaker_id = Speaker.id
WHERE TalkSessionWithSpeakers.event_id = ? AND TalkSessionWithSpeakers.talk_id = ?;

selectTalksBySpeakerId:
Expand Down

0 comments on commit e3c794d

Please sign in to comment.