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";