fix(B03): 진행단계 오버레이에 대시보드 버튼 누락 — homeButton 옵션 미전달

B04~B06은 createWorkflowLayout이 createStepBar에 homeButton: true를 넘겨
오버레이 최상단에 대시보드 탈출구를 단다. B03은 일반 레이아웃을 쓰느라
오버레이를 직접 조립하면서 이 옵션만 빠져 혼자 버튼이 없었다.

템플릿(createStepBar/createWorkflowOverlays)은 그대로 쓰고 옵션만 맞춘다.

typecheck·prettier 통과.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-08-08 16:05:21 +09:00
co-authored by Claude Opus 5
parent 2e8cf0d1c7
commit 960dca8360
+3
View File
@@ -651,6 +651,9 @@ export async function renderB03FileInput(root: HTMLElement): Promise<void> {
goToWorkflowStage(activeProjectId, WORKFLOW_STEP_ROUTES[stepIndex]);
}
},
// B03은 일반 레이아웃을 쓰느라 오버레이를 직접 조립한다 — createWorkflowLayout이
// 넘겨 주던 대시보드 탈출구를 여기서도 똑같이 달아야 다른 단계 화면과 어긋나지 않는다.
homeButton: true,
});
const layout = createGeneralLayout({
pageClass: "b03-file",