Now when importing a form field repeat array comes across as object not array?

Has there been another change the way Wappler deals with $Post arrays? Or am I now doing something wrong???

When I now pull across arrays from a Form it displays as an object - this:

object

But should be like this:

array

Why is this now different? which is the correct format?

Thanks!

code:

<div class="form-row" is="dmx-repeat" id="questions" dmx-bind:repeat="get_polls_history.data.get_questions" key="id">
                            <div class="col-12">
                                <div class="row">
                                    <div class="col d-flex">
                                        <input id="question_id" name="question_id" dmx-bind:name="questions[{{id}}][question_id]" type="text"
                                            class="form-control" dmx-bind:value="get_questions.id">
                                        <input id="topic_id" name="topic_id" dmx-bind:name="questions[{{id}}][topic_id]" type="text" class="form-control" dmx-bind:value="id">
                                        <input id="poll_id" name="poll_id" dmx-bind:name="questions[{{id}}][poll_id]" type="text" class="form-control" dmx-bind:value="get_polls.data.get_poll_id.id">

                                    </div>
                                </div>
Community Page
Last updated: