Empty Nested Items List After Update to 3.6.28

After updating to 3.6.28, the entries in the Nested Items are no longer displayed. I can add one, and then it is visible. As soon as I save, the list is empty. However, all entries are visible in the frontend. It seems to only happen when the Nested Items are in a Repeater. Here is my blueprint:

That doesn’t work.

    sections:
        label: Sections
        type: repeater
        displayMode: builder
        prompt: Add section
        itemsExpanded: false
        useTabs: true
        groups:
            section:
                name: Section
                icon: ph ph-cards
                description: Multi purpose section
                titleFrom: internal_title
                useTabs: true
                defaultTab: Content
                activeTab: Content
                fields:
                    slides:
                        label: Slides
                        span: row
                        spanClass: col-12
                        type: nesteditems
                        customMessages:
                            buttonCreate: New slide
                            titleUpdateForm: Update slide
                            titleCreateForm: Create slide
                        form:
                            fields:
                                hidden:
                                    label: Hidden
                                    span: row
                                    spanClass: col-12 
                                    type: switch
                            tabs:
                                fields:
                                    _slide:
                                        tab: Slide
                                        type: mixin
                                        source: Mixins\NestedContent\Slide

That seems to work.

    slides:
        label: Slides
        span: row
        spanClass: col-12
        type: nesteditems
        customMessages:
            buttonCreate: New slide
            titleUpdateForm: Update slide
            titleCreateForm: Create slide
        form:
            fields:
                hidden:
                    label: Hidden
                    span: row
                    spanClass: col-12 
                    type: switch
            tabs:
                fields:
                    _slide:
                        tab: Slide
                        type: mixin
                        source: Mixins\NestedContent\Slide

@daft Can you take a look?

Hey @Amin

Thanks, I found the issue—another patch released in 3.6.29

1 Like