Render every speaker for co-hosted keynote sessions#261
Merged
JacobCoffee merged 1 commit intomainfrom Apr 18, 2026
Merged
Conversation
The keynote-speaker enrichment loop broke after the first matching entry, so a shared keynote like "Rachell Calhoun & Tim Schilling" only rendered one of the two on the session detail page. Switch keynoteData to an array, collect every keynote speaker whose name appears in the session title, and ngFor the speaker card template.
Member
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Session detail pages for co-hosted keynote sessions (e.g. "Rachell Calhoun & Tim Schilling") were only showing one speaker. The enrichment loop stopped at the first matching keynote speaker in `keynoteSpeakers`:
For the Sun 3:15 pm slot, iteration hit Tim Schilling first, set `keynoteData` to Tim, and broke — Rachell Calhoun never made it to the template.
Fix
Test plan