owl-cli 6.137.0 → 6.138.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -526,14 +526,14 @@ var @projectCodeService = (function (pigeon) {
|
|
|
526
526
|
|
|
527
527
|
|
|
528
528
|
treeNode.parentPathIds = parentPathIds.reverse();
|
|
529
|
-
treeNode.parentPathNames = parentPathNames;
|
|
529
|
+
treeNode.parentPathNames = parentPathNames.reverse();
|
|
530
530
|
if(treeNode.parentPathNames ){
|
|
531
531
|
var sep = "";
|
|
532
532
|
var meta = spec['#meta'];
|
|
533
533
|
if(meta && meta.pathSep){
|
|
534
534
|
sep = meta.pathSep;
|
|
535
535
|
}
|
|
536
|
-
treeNode.fullPathName = parentPathNames.join(sep)+sep+treeNode.name;
|
|
536
|
+
treeNode.fullPathName = treeNode.parentPathNames.join(sep)+sep+treeNode.name;
|
|
537
537
|
}
|
|
538
538
|
|
|
539
539
|
|