From eb04ea7b1845e46227d9c1629da6858ee5d08936 Mon Sep 17 00:00:00 2001 From: hmm Date: Thu, 28 Aug 2014 16:43:05 +0800 Subject: [PATCH] change csvprovider parameter's show --- .../src/main/webapp/script/scriptManager/containerFactory.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bench4Q-Web/src/main/webapp/script/scriptManager/containerFactory.js b/Bench4Q-Web/src/main/webapp/script/scriptManager/containerFactory.js index 6a3fc159..e59e02f1 100644 --- a/Bench4Q-Web/src/main/webapp/script/scriptManager/containerFactory.js +++ b/Bench4Q-Web/src/main/webapp/script/scriptManager/containerFactory.js @@ -59,7 +59,7 @@ ContainerFactory.prototype.appendEdtiors = function(container, label, name, requ } else if (editorInfo.type.toLowerCase() == "file") { $(container).append( - editorFactory.createFile(lable, name, required, editorInfo.size, id,value)); + editorFactory.createFile(label, name, required, editorInfo.size, id,value)); } else if (editorInfo.type.toLowerCase() == "date") { $(container).append( editorFactory.createDate(label, name, required, editorInfo.size, id,value));