Skip to content

Commit

Permalink
Update CameraCalibrationInfoCard.vue
Browse files Browse the repository at this point in the history
Update CameraCalibrationInfoCard.vue
  • Loading branch information
mcm001 committed Jan 1, 2024
1 parent 3922440 commit 6d31b1d
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
import type { BoardObservation, CameraCalibrationResult, VideoFormat } from "@/types/SettingTypes";
import { useCameraSettingsStore } from "@/stores/settings/CameraSettingsStore";
import { useStateStore } from "@/stores/StateStore";
import { onBeforeMount, ref } from "vue";
import axios from "axios";
import { ref } from "vue";
import loadingImage from "@/assets/images/loading.svg";
type JSONFileUploadEvent = Event & { target: HTMLInputElement | null };
Expand Down Expand Up @@ -130,8 +129,7 @@ const getObservationDetails = (): ObservationDetails[] | undefined => {
mean: parseFloat(getMeanFromView(o).toFixed(2)),
snapshotSrc: "data:image/png;base64," + o.snapshotData.data || loadingImage
}));
console.log(ret)
return ret
return ret;
};
</script>

Expand Down

0 comments on commit 6d31b1d

Please sign in to comment.