From 2fe0d901e2f68783ff273da1343e13e2f07d50f7 Mon Sep 17 00:00:00 2001 From: juanf <juanf> Date: Fri, 6 Jan 2017 13:45:30 +0000 Subject: [PATCH] SSDM-4551 : In case the second level folder is not called DEFAULT, is shown. SVN: 37556 --- .../html/js/views/DataSetForm/widgets/DatasetViewerView.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/DataSetForm/widgets/DatasetViewerView.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/DataSetForm/widgets/DatasetViewerView.js index 7227d3e92b9..72d88c44d64 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/DataSetForm/widgets/DatasetViewerView.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/DataSetForm/widgets/DatasetViewerView.js @@ -231,6 +231,10 @@ function DataSetViewerView(dataSetViewerController, dataSetViewerModel) { if (file.isDirectory == false) { return false; } - return file.pathInDataSet.split('/').length < this._level + var currentLevel = file.pathInDataSet.split('/').length; + if(currentLevel === 2 && file.pathInListing !== "DEFAULT") { + return false; + } + return currentLevel < this._level } } \ No newline at end of file -- GitLab