diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleForm/widgets/PlateView.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleForm/widgets/PlateView.js index 9166c9b504750c2ec598d26d76b5114fed827e45..fe2050591b16b06c4318c1f92907e89045848e2b 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleForm/widgets/PlateView.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleForm/widgets/PlateView.js @@ -293,6 +293,12 @@ function PlateView(plateController, plateModel) { if(!dataByPosition[wellRow]) { dataByPosition[wellRow] = []; } + for(var vIdx = 0; vIdx < wellData.values.length; vIdx++) { + var value = wellData.values[vIdx]; + if(value.toPrecision) { + wellData.values[vIdx] = value.toPrecision(9); + } + } dataByPosition[wellRow][wellColumn] = wellData; } receivedData.featureVectors = dataByPosition;