- Issue created by @zigazou
- π«π·France zigazou
zigazou β changed the visibility of the branch 3506138-unable-to-use to hidden.
- π«π·France zigazou
The proposed patch works for my case but Iβm really not sure if this is what needs to be done.
- πΊπ¦Ukraine SmovS Lutsk
Hi @zigazou!
Thank you for your contribution.I confirm that this fix resolves the issue with the βView fieldβ in the nested component within Views.
It seems that when we use nested components, the Viewβs query may not have been executed at that point, resulting in an empty$view
in$this
. Calling$view->build();
fixes this by rebuilding the View and fetching the data successfully.However, Iβm not entirely sure about the performance impact of this approach. Perhaps we could add a workaround to check the state of the View and apply this fix only when necessary.
I added screenshots with the View state without the fix and with it.
- π«π·France pdureau Paris
Thanks so much @smovs
However, Iβm not entirely sure about the performance impact of this approach.
Hi Christian, can you check this?
- π«π·France zigazou
The first lines of the
build
method are the following:if (!empty($this->built)) { return; }
Therefore calling the
build
method on an already built view should not have a performance impact.On another side, this might hide an incorrect view manipulation along the process.