diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/StorageManager/widgets/StorageController.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/StorageManager/widgets/StorageController.js index a40e73ae7dcdab3b01b6a285ceb951339cac16f9..4d4a5fb67bd9c8d75ac4f3e32ef7332f1eba58c2 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/StorageManager/widgets/StorageController.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/StorageManager/widgets/StorageController.js @@ -45,11 +45,21 @@ function StorageController(configOverride) { if(data.samples.length > 1 || data.samples.length === 1 && data.samples[0].properties[_this._storageModel.storagePropertyGroup.boxProperty]) { _this._storageView.showBoxName(); - _this._storageView.showBoxSize(); - _this._storageView.showPosField(data.size, true); } else { _this._storageView.hideBoxField(); + } + + if(data.samples.length > 1 || + data.samples.length === 1 && data.samples[0].properties[_this._storageModel.storagePropertyGroup.boxSizeProperty]) { + _this._storageView.showBoxSize(); + } else { _this._storageView.hideBoxSizeField(); + } + + if(data.samples.length > 1 || + data.samples.length === 1 && data.samples[0].properties[_this._storageModel.storagePropertyGroup.positionProperty]) { + _this._storageView.showPosField(data.size, true); + } else { _this._storageView.hidePosField(); }