From f31413a36583b02dd168c14f5f15e6d40e5e45f2 Mon Sep 17 00:00:00 2001
From: barillac <barillac>
Date: Mon, 19 Sep 2016 09:54:13 +0000
Subject: [PATCH] correct 2 error messages

SVN: 37087
---
 .../1/as/webapps/eln-lims/html/js/config/StandardProfile.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/config/StandardProfile.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/StandardProfile.js
index 6a8781a7e9b..97c306ed32a 100644
--- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/StandardProfile.js
+++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/StandardProfile.js
@@ -454,7 +454,7 @@ $.extend(StandardProfile.prototype, DefaultProfile.prototype, {
 							var requestProductAnnotations = requestProductsAnnotations[requestProduct.permId];
 							
 							if(requestProduct.parents.length === 0) {
-								Util.showError("Product " + requestProduct.code + " don't have a provider, FIX IT!.");
+								Util.showError("Product " + requestProduct.code + " does not have a provider, FIX IT!.");
 								return;
 							}
 							var provider = requestProduct.parents[0];
@@ -470,7 +470,7 @@ $.extend(StandardProfile.prototype, DefaultProfile.prototype, {
 							}
 							quantity += parseInt(requestProductAnnotations["QUANTITY_OF_ITEMS"]);
 							if(!quantity) {
-								Util.showError("Product " + requestProduct.code + " from request " +  request.code + " don't have a quantity, FIX IT!.");
+								Util.showError("Product " + requestProduct.code + " from request " +  request.code + " does not have a quantity, FIX IT!.");
 								return;
 							}
 							
-- 
GitLab