탭 표시 제어 및 헤더 중앙 정렬 수정

This commit is contained in:
hyunho
2026-03-25 12:59:53 +09:00
parent 4feb4e792f
commit 36b820614d
2 changed files with 25 additions and 7 deletions

View File

@@ -51,9 +51,11 @@ function setActiveView(view) {
const isOrganization = currentView === "organization";
if (organizationStage) {
organizationStage.hidden = !isOrganization;
organizationStage.style.display = isOrganization ? "flex" : "none";
}
if (emptyStage) {
emptyStage.hidden = isOrganization;
emptyStage.style.display = isOrganization ? "none" : "flex";
}
if (isOrganization && previousView !== "organization" && organizationFrame) {