owl-cli 6.136.0 → 6.137.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,7 +525,7 @@ var @projectCodeService = (function (pigeon) {
|
|
|
525
525
|
}
|
|
526
526
|
|
|
527
527
|
|
|
528
|
-
treeNode.parentPathIds = parentPathIds;
|
|
528
|
+
treeNode.parentPathIds = parentPathIds.reverse();
|
|
529
529
|
treeNode.parentPathNames = parentPathNames;
|
|
530
530
|
if(treeNode.parentPathNames ){
|
|
531
531
|
var sep = "";
|
|
@@ -533,8 +533,7 @@ var @projectCodeService = (function (pigeon) {
|
|
|
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 = parentPathNames.join(sep)+sep+treeNode.name;
|
|
538
537
|
}
|
|
539
538
|
|
|
540
539
|
|