Call Table Actions without making full requests?

When calling a table Action of any kind, it seems livewire will refetch the whole page request - is there a way to prevent this? We're aiming to open a Modal that just fetches a small amount of data but at the moment it's doing all the original page queries via /livewire/update . The initial page is quite data heavy and we're trying to minimise the amount of queries that need to run - it seems overkill to re-run those initial queries when displaying something like help text.
1 Reply
trymedo
trymedo3w ago
Can anyone help me understand why this happens or more importantly; Is there anything we can do to avoid it? I guess this is because each page is a full-page component but are there any other solutions that might help with this sort of thing? It just seems a bit overkill that even a simple action such as showing a help-text modal would run all the main page requests again.