From 64bd5748a33b366b7c41fd2454cad9380d2c5f1c Mon Sep 17 00:00:00 2001
From: felmer <franz-josef.elmer@id.ethz.ch>
Date: Sun, 7 May 2023 14:45:56 +0200
Subject: [PATCH] SSDM-13489: Fixing bug in flow resolver of SFTP view: fcs
 files not in top-level EXPERIMENT samples are not shown

---
 .../1/dss/file-system-plugins/eln-tree/resolver-plugins/flow.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui-eln-lims/src/core-plugins/eln-lims/1/dss/file-system-plugins/eln-tree/resolver-plugins/flow.py b/ui-eln-lims/src/core-plugins/eln-lims/1/dss/file-system-plugins/eln-tree/resolver-plugins/flow.py
index 2efdde7cee5..88e924b7a2a 100644
--- a/ui-eln-lims/src/core-plugins/eln-lims/1/dss/file-system-plugins/eln-tree/resolver-plugins/flow.py
+++ b/ui-eln-lims/src/core-plugins/eln-lims/1/dss/file-system-plugins/eln-tree/resolver-plugins/flow.py
@@ -6,7 +6,7 @@ import script
 
 
 def addSampleChildNodes(path, samplePermId, sampleType, response, acceptor, context):
-    dataSets = script.getDataSetsOfSampleAndItsChildren(samplePermId, context)
+    dataSets = getDataSetsOfSampleAndItsDescendants(samplePermId, context)
     filteredDataSets = []
     for dataSet in dataSets:
         if acceptor.acceptDataSet(dataSet):
-- 
GitLab