From 70b34df4c79769095f7e4c809ce2ee1f697554d1 Mon Sep 17 00:00:00 2001 From: barillac <barillac> Date: Tue, 7 Apr 2015 14:39:32 +0000 Subject: [PATCH] Vocabulary not found dirty fix (juanf) SVN: 33800 --- .../1/as/webapps/newbrowser/html/js/util/FormUtil.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/util/FormUtil.js b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/util/FormUtil.js index d60d3b5a53d..e2ab960e1dd 100644 --- a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/util/FormUtil.js +++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/util/FormUtil.js @@ -388,14 +388,15 @@ var FormUtil = new function() { var vocabulary = null; if(isNaN(propertyType.vocabulary)) { vocabulary = this.profile.getVocabularyById(propertyType.vocabulary.id); - if(vocabulary === null) { //This should not happen, but can save the day. - vocabulary = propertyType.vocabulary; - vocabulary.terms = propertyType.terms; - } } else { vocabulary = this.profile.getVocabularyById(propertyType.vocabulary); } + if(!vocabulary && propertyType.terms) { //This should not happen, but can save the day. + vocabulary = {}; + vocabulary.terms = propertyType.terms; + } + $component = this._getDropDownFieldForVocabulary(propertyType.code, vocabulary.terms, propertyType.description, propertyType.mandatory); } else if (propertyType.dataType === "HYPERLINK") { $component = this._getInputField("url", propertyType.code, propertyType.description, null, propertyType.mandatory); -- GitLab