Skip to content

Commit 4527cf1

Browse files
committed
feat: 세션 목록에 요약 추가
1 parent 34853eb commit 4527cf1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/common/src/components/mdx_components/session_list.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ const SessionItem: React.FC<{ session: BackendAPISchemas.SessionSchema; enableLi
4040
/>
4141
<Stack direction="column" sx={{ flexGrow: 1, py: 0.5, gap: 0.75 }}>
4242
<SessionTitle children={sessionTitle} />
43+
{session.summary && <Typography variant="subtitle1" sx={{ whiteSpace: "pre-wrap" }} children={session.summary} />}
4344
<Stack direction="row" spacing={0.5}>
4445
{session.speakers.map((speaker) => (
4546
<Chip key={speaker.id} size="small" label={speaker.nickname} />

0 commit comments

Comments
 (0)