From ffccb846eb07babea169837e8564931ffa255d20 Mon Sep 17 00:00:00 2001 From: umsangdon Date: Sat, 8 Aug 2026 10:35:26 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EB=A6=AC=ED=8C=A9=ED=86=A0=EB=A7=81?= =?UTF-8?q?=20=EB=A7=88=EA=B0=90=20=E2=80=94=20=ED=8F=AC=EB=A7=B7=ED=84=B0?= =?UTF-8?q?=20=EC=A0=81=EC=9A=A9=C2=B7=EB=82=B4=EB=B6=80=20=EB=9D=BC?= =?UTF-8?q?=EB=B2=A8=20=EC=A0=95=EB=A6=AC=C2=B7=EA=B3=84=ED=9A=8D=EC=84=9C?= =?UTF-8?q?=20=EC=B2=B4=ED=81=AC=EB=A6=AC=EC=8A=A4=ED=8A=B8=20=EC=99=84?= =?UTF-8?q?=EB=A3=8C=20=ED=91=9C=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - prettier 적용(편집 파일 14종), ruff format 무변경 확인 - B03 내부 백그라운드 태스크 라벨 b04-wf1-auto -> b04-preprocess-auto - docs/raw/PLAN.md R1 체크리스트 Phase 1~7 완료 표시 (검증 대기 상태로 전환) Co-Authored-By: Claude Fable 5 --- B03_FileInput/B03_FileInput_Router.py | 4 ++-- B05_Profile/B05_Profile_UI_Page.ts | 5 +---- B06_Section/B06_Section_UI_Page.ts | 5 +---- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/B03_FileInput/B03_FileInput_Router.py b/B03_FileInput/B03_FileInput_Router.py index 3e15076c..94bb5b56 100644 --- a/B03_FileInput/B03_FileInput_Router.py +++ b/B03_FileInput/B03_FileInput_Router.py @@ -332,7 +332,7 @@ async def upload_project_files( input_file_id=point_cloud_input_id, user_role=str(session["role"]), ), - task_name=f"b04-wf1-auto-{project_id}", + task_name=f"b04-preprocess-auto-{project_id}", ) return FileUploadResponse(project_id=str(project_id), files=results) except LookupError as exc: @@ -562,7 +562,7 @@ async def finalize_project_upload( input_file_id=point_cloud_input_id, user_role=str(session["role"]), ), - task_name=f"b04-wf1-auto-{project_id}", + task_name=f"b04-preprocess-auto-{project_id}", ) return FileUploadResponse(project_id=str(project_id), files=[result]) except LookupError as exc: diff --git a/B05_Profile/B05_Profile_UI_Page.ts b/B05_Profile/B05_Profile_UI_Page.ts index 8cbf16e9..f5f1eeb2 100644 --- a/B05_Profile/B05_Profile_UI_Page.ts +++ b/B05_Profile/B05_Profile_UI_Page.ts @@ -612,10 +612,7 @@ export async function renderB05Route(root: HTMLElement): Promise { renderLatest(await loadLatest(true)); showToast(L("B05_Route_TempSave_Success"), "success"); } catch (error) { - showToast( - error instanceof Error ? error.message : L("B05_Route_TempSave_Failed"), - "error", - ); + showToast(error instanceof Error ? error.message : L("B05_Route_TempSave_Failed"), "error"); } finally { hideLoadingOverlay(); } diff --git a/B06_Section/B06_Section_UI_Page.ts b/B06_Section/B06_Section_UI_Page.ts index 148d9031..8aaf412e 100644 --- a/B06_Section/B06_Section_UI_Page.ts +++ b/B06_Section/B06_Section_UI_Page.ts @@ -42,10 +42,7 @@ import { computeMassHaul, massHaulPayload } from "@util/common_util_mass_haul"; import { computeHaulPlan } from "@util/common_util_mass_haul_balance"; import { balloonOffsetsPayload } from "@util/common_util_mass_haul_balance_view"; import { designElevationAt } from "./B06_Section_UI_Section_Common"; -import { - createStandardPanel, - type StandardPanelController, -} from "./B06_Section_UI_Standard_Panel"; +import { createStandardPanel, type StandardPanelController } from "./B06_Section_UI_Standard_Panel"; import "./B06_Section_UI_Style.css"; import "./B06_Section_UI_Style_Cross.css"; import "./B06_Section_UI_Style_Cross_Areas.css";