We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34853eb commit 4527cf1Copy full SHA for 4527cf1
packages/common/src/components/mdx_components/session_list.tsx
@@ -40,6 +40,7 @@ const SessionItem: React.FC<{ session: BackendAPISchemas.SessionSchema; enableLi
40
/>
41
<Stack direction="column" sx={{ flexGrow: 1, py: 0.5, gap: 0.75 }}>
42
<SessionTitle children={sessionTitle} />
43
+ {session.summary && <Typography variant="subtitle1" sx={{ whiteSpace: "pre-wrap" }} children={session.summary} />}
44
<Stack direction="row" spacing={0.5}>
45
{session.speakers.map((speaker) => (
46
<Chip key={speaker.id} size="small" label={speaker.nickname} />
0 commit comments