From 6846072efb25bcc33b66052861fe4a763fcc4a06 Mon Sep 17 00:00:00 2001
From: juanf <juanf>
Date: Wed, 30 Mar 2016 14:25:31 +0000
Subject: [PATCH] SSDM-3418 : Bugfix to the plate view.

SVN: 36044
---
 .../eln-lims/html/js/views/SampleForm/widgets/PlateView.js    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 2bddbe95859..9166c9b5047 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
@@ -449,7 +449,7 @@ function PlateView(plateController, plateModel) {
 		}
 	}
 	
-	this._djb2Code = function(str){
+	this._djb2Code = function(str) {
         var hash = 5381;
         for (i = 0; i < str.length; i++) {
             char = str.charCodeAt(i);
@@ -597,7 +597,7 @@ function PlateView(plateController, plateModel) {
 		var isVocabulary = this._isFeatureVocabulary(featureVectorDatasetCode, featureCode);
 		
 		for(var rowsIdx = 1; rowsIdx < featuresData.featureVectors.length; rowsIdx++) {
-			for(var colsIdx = 1; colsIdx < featuresData.featureVectors.length; colsIdx++) {
+			for(var colsIdx = 1; colsIdx < featuresData.featureVectors[rowsIdx].length; colsIdx++) {
 				var wellData = featuresData.featureVectors[rowsIdx][colsIdx];
 				if(!isVocabulary) { //Don't support vocabularies on Max/Min Scale
 					var value = wellData.values[featureIndex];
-- 
GitLab