F
Filament2w ago
Hedi

Don't update the whole page for live components?

Hello. when i have a ->live() component, it obviously updates the page again, but every single query is also pointlessly ran again. is there any way to prevent this? so that only required ones are updated? this will significantly improve efficiency and refresh times when i change a live input this happens inside my form, where i have Select that lets you select a user. and when you select a user, it updates the whole page, and every single query (of other Selects) inside that page is ran again
2 Replies
Dennis Koch
Dennis Koch2w ago
No, it's not possible. This is a limitation of Livewire itself. We try to fix this somewhat with "Partials" in Filament v4
Auth1Specialist
You could extract your "partial" to a separate component if possible? That way it will only reload that "part".

Did you find this page helpful?