diff --git a/deep_sequencing_unit/source/core-plugins/ngs-sample-overview-graph/1/as/webapps/sample-graph/html/webapp.js b/deep_sequencing_unit/source/core-plugins/ngs-sample-overview-graph/1/as/webapps/sample-graph/html/webapp.js index 585e1d75b2940c6c7fae968906776656b35020d8..ee195fb51ce06c1d6afd3338744062b653497add 100644 --- a/deep_sequencing_unit/source/core-plugins/ngs-sample-overview-graph/1/as/webapps/sample-graph/html/webapp.js +++ b/deep_sequencing_unit/source/core-plugins/ngs-sample-overview-graph/1/as/webapps/sample-graph/html/webapp.js @@ -375,9 +375,9 @@ SampleGraphPresenter.prototype.initializeGraphSamples = function() } SampleGraphPresenter.prototype.updateVisibility = function() { - // Turn off visibility on all nodes - this.allNodes.forEach(function(samps, i) { - samps.forEach(function(s) { s.visible = (i > 0) ? false : true }) + // Turn off visibility on all nodes except the root node + this.allNodes.forEach(function(samps) { + samps.forEach(function(s) { s.visible = s.identifier == model.sampleIdentifier; }) }); var outEdgesGetter = this.outEdgesFunction(); // Figure out if the nodes should be visible