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

SSDM-1823 : Give warning when trying to move samples with storage manager and nothing is selected

SVN: 34115
parent 5724e43b
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ function StorageManagerController(mainController) {
var _this = this;
this._storageManagerView.getMoveButton().click(function() {
var fromModel = _this._storageFromController.getModel();
if(!fromModel.boxContents) {
if(!fromModel.boxContents || fromModel.boxContents.length === 0) {
Util.showError("Please select something to move.");
return;
}
......
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