Skip to content

Commit 8fdb4f4

Browse files
committed
fix: 키노트에서 발표 상세 정뵤 표가 깨지던 문제 수정
1 parent d272c99 commit 8fdb4f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/pyconkr/src/components/pages/presentation_detail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export const PresentationDetailPage: React.FC = ErrorBoundary.with(
203203
? Object.entries(scheduleMap).map(([datetime, rooms], index) => (
204204
<TableRow key={datetime}>
205205
{index === 0 && (
206-
<TableCell rowSpan={presentation.room_schedules.length} sx={{ width: "1%", whiteSpace: "nowrap" }}>
206+
<TableCell rowSpan={Object.keys(scheduleMap).length} sx={{ width: "1%", whiteSpace: "nowrap" }}>
207207
<Typography variant="subtitle1" fontWeight="bold" children={datetimeLabel} />
208208
</TableCell>
209209
)}

0 commit comments

Comments
 (0)