File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -634,7 +634,7 @@ async function _expandObject({
634
634
}
635
635
return v ;
636
636
} ) ,
637
- { propertyIsArray : options . isFrame } ) ;
637
+ { propertyIsArray : ! ! options . isFrame } ) ;
638
638
continue ;
639
639
}
640
640
@@ -775,8 +775,7 @@ async function _expandObject({
775
775
776
776
expandedValue = await api . expand ( {
777
777
activeCtx,
778
- activeProperty :
779
- '@reverse' ,
778
+ activeProperty : '@reverse' ,
780
779
element : value ,
781
780
options
782
781
} ) ;
@@ -881,7 +880,7 @@ async function _expandObject({
881
880
} ) ;
882
881
} else {
883
882
// recurse into @list or @set
884
- const isList = ( expandedProperty === '@list' ) ;
883
+ const isList = expandedProperty === '@list' ;
885
884
if ( isList || expandedProperty === '@set' ) {
886
885
let nextActiveProperty = activeProperty ;
887
886
if ( isList && expandedActiveProperty === '@graph' ) {
You can’t perform that action at this time.
0 commit comments