Skip to content

Commit ce040b5

Browse files
ppiyakk2claude
andcommitted
fix: full 타입 세션을 6층 Main 칼럼에만 표시
keynote / opening / lightning-talk은 모두 6층 Main에서만 진행되므로, 기존의 colSpan={2}로 두 방을 걸치는 표시를 6층 Main 한 칸으로만 그리고 7층 Room1 칼럼은 빈 셀로 분리함. 태그별 배경색도 6층 칸에만 적용됨. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 65335ea commit ce040b5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/components/TimetableList.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,10 @@ function TimetableList({ sessions }) {
7373
<td className="tt-td tt-time">
7474
<TimeRange start={row.time} end={row.endTime} />
7575
</td>
76-
<td className="tt-td tt-cell-full" colSpan={2}>
76+
<td className="tt-td tt-cell-full">
7777
<SessionCell title={title(row)} speaker={row.speaker} code={row.code} />
7878
</td>
79+
<td className="tt-td tt-cell-empty"></td>
7980
</tr>
8081
);
8182
}

0 commit comments

Comments
 (0)