diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/SettingsManager.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/SettingsManager.js index e81487b0f57de38c355d8ddd12c54c132ae338c4..356a90906998af6a606a45d3b067070ddca763a4 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/SettingsManager.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/SettingsManager.js @@ -148,7 +148,6 @@ function SettingsManager(serverFacade) { if (hint.ANNOTATION_PROPERTIES) { var propertyTypeOptions = this.getAnnotationPropertyTypeOptions(); for (var annotationProperty of hint.ANNOTATION_PROPERTIES) { - // debugger; if (sampleTypeExists && (annotationProperty.TYPE == null || propertyTypeOptions.indexOf(annotationProperty.TYPE) === -1)) { errors.push(errorPrefix + "Annotation properties must have an existing property type but is: " + annotationProperty.TYPE); diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/TreeUtil.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/TreeUtil.js index 1469a5e620b7fbe2d0d5ce8ff23e7f2a51ff588d..f96091986bbb269440305d1df45205db00536166 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/TreeUtil.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/TreeUtil.js @@ -23,7 +23,6 @@ var TreeUtil = new function() { this.getTreeForEntity = function($treeContainer, entity) { var treeModel; - debugger; switch(entity["@type"]) { case "SpaceWithProjectsAndRoleAssignments": treeModel = { title : Util.getDisplayNameForEntity(entity), entityType: "SPACE", key : entity.code, folder : true, lazy : true, hideCheckbox: true }; diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/ProjectForm/ProjectFormView.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/ProjectForm/ProjectFormView.js index 4c0f62ce684c9339bbf0e0024006fc9c5cec59cd..2e7d08dbdd8455b4083b58876dfe577f4dc110a2 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/ProjectForm/ProjectFormView.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/ProjectForm/ProjectFormView.js @@ -178,10 +178,9 @@ function ProjectFormView(projectFormController, projectFormModel) { $formColumn.append($("<legend>").append(ELNDictionary.getExperimentKindName("/" + _this._projectFormModel.project.spaceCode, true))) $formColumn.append($experimentsContainer); - var experimentTableController = new ExperimentTableController(this._projectFormController, null, this._projectFormModel.project, true); + var experimentTableController = new ExperimentTableController(this._projectFormController, null, jQuery.extend(true, {}, this._projectFormModel.project), true); experimentTableController.init($experimentsContainer); - $formColumn.append($("<legend>").append("" + ELNDictionary.Samples + "")) var $samplesContainerHeader = $("<div>"); $formColumn.append($samplesContainerHeader);