fix(M02): 개인 층 지우기에 판을 보냄 · 저장 안 한 고침이 있으면 머리 메뉴·뒤로 가기로 떠날 때도 확인(취소하면 M02 에 남고 주소 되돌림) · 내 양식·회사 공식 저장 뒤 열던 양식 유지

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_0148XFUpPfpiuTjxF1EK9c95
This commit is contained in:
2026-09-25 17:19:24 +09:00
co-authored by Claude Sonnet 5
parent 7b2c22d920
commit 847f0e44de
5 changed files with 40 additions and 6 deletions
@@ -365,7 +365,7 @@ export function buildSide(opt: SideOptions): SideHandle {
if (!(await showConfirmDialog(L("M02_DeleteConfirm").replace("{value}", info.이름)))) return;
try {
if (layer === "system") await deleteTemplate(info.종류, info.이름, info.판);
else await deleteLayerTemplate(layer, info.종류, info.이름);
else await deleteLayerTemplate(layer, info.종류, info.이름, info.판);
showToast(L("M02_Deleted"), "success");
opt.onOpen(null);
await refresh();
@@ -406,7 +406,12 @@ export function buildSide(opt: SideOptions): SideHandle {
} catch (error) {
return failed(error);
}
void act(() => saveProjectAs(projectId, to, cur.kind, cur.name));
try {
await saveProjectAs(projectId, to, cur.kind, cur.name);
showToast(L("M02_Done"), "success"); // 열던 양식은 그대로 둠
} catch (error) {
failed(error);
}
};
projectButton(L("M02_ProjectReset"), async () => {
if (await showConfirmDialog(L("M02_ResetConfirm"))) void act(() => resetProject(projectId));