From e291e2ef52ab94d36762ec4d2a5573dff976f199 Mon Sep 17 00:00:00 2001 From: Joe Knapper Date: Tue, 30 Jun 2026 14:33:48 +0100 Subject: [PATCH] Also check if stage exists --- webapp/src/components/modalComponents/calibrationWizard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/components/modalComponents/calibrationWizard.vue b/webapp/src/components/modalComponents/calibrationWizard.vue index 55618348..798ee8e5 100644 --- a/webapp/src/components/modalComponents/calibrationWizard.vue +++ b/webapp/src/components/modalComponents/calibrationWizard.vue @@ -123,7 +123,7 @@ export default { // Ask which way the z motor turns, right after the welcome screen but before any // other tasks, so the stage is correctly oriented before anything else runs. - if (this.thingDescription("stage").title != "DummyStage") { + if (this.thingAvailable("stage") && this.thingDescription("stage").title != "DummyStage") { tasks.push({ component: markRaw(singleStepTask), props: { stepComponent: zMotorDirectionStep },