owl-cli 6.136.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.
|
@@ -525,16 +525,15 @@ var @projectCodeService = (function (pigeon) {
|
|
|
525
525
|
}
|
|
526
526
|
|
|
527
527
|
|
|
528
|
-
treeNode.parentPathIds = parentPathIds;
|
|
529
|
-
treeNode.parentPathNames = parentPathNames;
|
|
528
|
+
treeNode.parentPathIds = parentPathIds.reverse();
|
|
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
|
-
|
|
537
|
-
treeNode.fullPathName = parentPathNames.reverse().join(sep)+sep+treeNode.name;
|
|
536
|
+
treeNode.fullPathName = treeNode.parentPathNames.join(sep)+sep+treeNode.name;
|
|
538
537
|
}
|
|
539
538
|
|
|
540
539
|
|