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

SSDM-4551 : In case the second level folder is not called DEFAULT, is shown.

SVN: 37557
parent 2fe0d901
No related branches found
No related tags found
No related merge requests found
......@@ -232,7 +232,7 @@ function DataSetViewerView(dataSetViewerController, dataSetViewerModel) {
return false;
}
var currentLevel = file.pathInDataSet.split('/').length;
if(currentLevel === 2 && file.pathInListing !== "DEFAULT") {
if(currentLevel === 2 && file.pathInListing.toUpperCase() !== "DEFAULT") {
return false;
}
return currentLevel < this._level
......
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