Skip to content
Snippets Groups Projects
Commit d9964169 authored by juanf's avatar juanf
Browse files

SSDM-5555 : ELN storage glitch when switching between boxes with positions...

SSDM-5555 : ELN storage glitch when switching between boxes with positions assigned and those without

SVN: 38692
parent 398e90cc
No related branches found
No related tags found
No related merge requests found
...@@ -46,8 +46,13 @@ function StorageController(configOverride) { ...@@ -46,8 +46,13 @@ function StorageController(configOverride) {
data.samples.length === 1 && data.samples[0].properties[_this._storageModel.storagePropertyGroup.boxProperty]) { data.samples.length === 1 && data.samples[0].properties[_this._storageModel.storagePropertyGroup.boxProperty]) {
_this._storageView.showBoxName(); _this._storageView.showBoxName();
_this._storageView.showBoxSize(); _this._storageView.showBoxSize();
_this._storageView.showPosField(data.size, true);
} else {
_this._storageView.hideBoxField();
_this._storageView.hideBoxSizeField();
_this._storageView.hidePosField();
} }
_this._storageView.showPosField(data.size, true);
}); });
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment