From f650ff7922ead7fad28b637b69e3c600fa010b8b Mon Sep 17 00:00:00 2001 From: Antonio Anaya Date: Wed, 3 Jun 2026 21:47:49 -0600 Subject: [PATCH] ui_migration bugfix(component) fix reactivity add markraw on camera and camera_stage_mapping --- webapp/src/components/modalComponents/calibrationWizard.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/src/components/modalComponents/calibrationWizard.vue b/webapp/src/components/modalComponents/calibrationWizard.vue index 0dd1dcc2..1e54ec6b 100644 --- a/webapp/src/components/modalComponents/calibrationWizard.vue +++ b/webapp/src/components/modalComponents/calibrationWizard.vue @@ -68,8 +68,8 @@ export default { this.$refs["calibrationModalEl"].addEventListener("hidden", this.onHide); // Check which Things are available on mount. const allCalibrationTasks = { - camera: cameraCalibrationTask, - camera_stage_mapping: cameraStageMappingTask, + camera: markRaw(cameraCalibrationTask), + camera_stage_mapping: markRaw(cameraStageMappingTask), }; this.availableCalibrationTasks = Object.fromEntries( Object.entries(allCalibrationTasks).filter(([thing]) => this.thingAvailable(thing)),