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

SSDM-2293 : Polishing, labels don't appear for the positions where the current...

SSDM-2293 : Polishing, labels don't appear for the positions where the current sample is, the rack is highlighted instead.

SVN: 34506
parent 0ef0e31a
No related branches found
No related tags found
No related merge requests found
...@@ -265,8 +265,12 @@ function StorageView(storageController, storageModel, gridView) { ...@@ -265,8 +265,12 @@ function StorageView(storageController, storageModel, gridView) {
row[y] = col; row[y] = col;
} }
label = { displayName : code, data : {} }; if(_this._storageModel.sample && element.permId === _this._storageModel.sample.permId) {
col.push(label); continue;
} else {
label = { displayName : code, data : {} };
col.push(label);
}
} }
} }
} else { } else {
......
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