Skip to content

Commit

Permalink
round
Browse files Browse the repository at this point in the history
  • Loading branch information
srimanachanta committed Dec 31, 2023
1 parent 9d553b5 commit 75a580b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}));
};
Expand Down

0 comments on commit 75a580b

Please sign in to comment.