File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -307,9 +307,11 @@ const namespaceRelationships = (
307
307
relationships : Relationship ,
308
308
alias : string ,
309
309
) : void => {
310
- _ . forEach ( relationships , ( relationship : Relationship , key ) => {
310
+ for ( const [ key , relationship ] of Object . entries (
311
+ relationships as RelationshipInternalNode ,
312
+ ) ) {
311
313
if ( key === '$' ) {
312
- return ;
314
+ continue ;
313
315
}
314
316
315
317
let mapping = ( relationship as RelationshipLeafNode ) . $ ;
@@ -323,7 +325,7 @@ const namespaceRelationships = (
323
325
} ;
324
326
}
325
327
namespaceRelationships ( relationship , alias ) ;
326
- } ) ;
328
+ }
327
329
} ;
328
330
329
331
type PermissionLookup = Dictionary < true | string [ ] > ;
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ const namespaceRelationships = (
102
102
relationships as RelationshipInternalNode ,
103
103
) ) {
104
104
if ( key === '$' ) {
105
- return ;
105
+ continue ;
106
106
}
107
107
108
108
let mapping = ( relationship as RelationshipLeafNode ) . $ ;
You can’t perform that action at this time.
0 commit comments