Skip to content
This repository has been archived by the owner on Jan 23, 2021. It is now read-only.

Fix child array building when attributes are available

Pre-release
Pre-release
Compare
Choose a tag to compare
@markwilson markwilson released this 17 Jul 15:29
· 2 commits to master since this release

Fixes bug in logic for building the array of child objects. Previously, <Child attr="value" /><Child attr="value" /> was returning "Child": {"attr": "value", 0: {"attr": "value"}} - should now return "Child": [{"attr": "value"}, {"attr": "value"}]