Skip to content

v3.4.1

Compare
Choose a tag to compare
@cloudcannon-oss cloudcannon-oss released this 23 Mar 05:53
· 200 commits to main since this release

Fixed an error where nested object arrays in a component blueprint would error out.

blueprint:
  title: Hello World
  nested:
    # `nested` would be made into an array structure with a value matching the below object
    - title: "Nested Object #1"
      double_nested:
        # This would not work and `double_nested` would default to a string array
        - title: "Nested Object #2"

This release fixes this behaviour, and deeply nested object arrays will behave as expected.