From 75a580b396fb1345e414269a6188352acd8663a6 Mon Sep 17 00:00:00 2001 From: Sriman Achanta <68172138+srimanachanta@users.noreply.github.com> Date: Sun, 31 Dec 2023 00:38:53 -0500 Subject: [PATCH] round --- .../src/components/cameras/CameraCalibrationInfoCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/photon-client/src/components/cameras/CameraCalibrationInfoCard.vue b/photon-client/src/components/cameras/CameraCalibrationInfoCard.vue index 552ba7e64e..00fda8fe18 100644 --- a/photon-client/src/components/cameras/CameraCalibrationInfoCard.vue +++ b/photon-client/src/components/cameras/CameraCalibrationInfoCard.vue @@ -128,7 +128,7 @@ interface ObservationDetails { const getObservationDetails = (): ObservationDetails[] | undefined => { return getCalibrationCoeffs()?.observations.map((o, i) => ({ index: i, - mean: getMeanFromView(o), + mean: parseFloat(getMeanFromView(o).toFixed(2)), snapshotSrc: observationImgData.value[i] || loadingImage })); };