From bea80cb700c2975e843ed9aa7fcc4d221b07ab22 Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 29 Nov 2019 20:38:31 -0800 Subject: [PATCH] Fix noSuchFieldException on calibration --- chameleon-client/src/components/OutputTab/DualCalibration.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chameleon-client/src/components/OutputTab/DualCalibration.vue b/chameleon-client/src/components/OutputTab/DualCalibration.vue index 8e0a65cc3..22b95ccc5 100644 --- a/chameleon-client/src/components/OutputTab/DualCalibration.vue +++ b/chameleon-client/src/components/OutputTab/DualCalibration.vue @@ -47,8 +47,8 @@ } }, sendSlope(m, b, valid) { - this.handleInput('m', m); - this.handleInput('b', b); + this.handleInput('dualTargetCalibrationM', m); + this.handleInput('dualTargetCalibrationB', b); this.$emit('update'); }, clearSlope() {