File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## [ 1.24.2]
8+
9+ - Additional fix for extended root property in eval #751
10+
711## [ 1.24.1]
812
913- Fix for extended root property #751
Original file line number Diff line number Diff line change @@ -670,7 +670,7 @@ export class EvalResultProperty extends BaseProperty {
670670 constructor ( propertyNode : Element ) {
671671 super ( propertyNode )
672672 if ( this . hasChildren ) {
673- this . children = Array . from ( propertyNode . childNodes ) . map (
673+ this . children = Array . from ( propertyNode . getElementsByTagName ( 'property' ) ) . map (
674674 ( propertyNode : Element ) => new EvalResultProperty ( propertyNode )
675675 )
676676 }
You can’t perform that action at this time.
0 commit comments