Mohammed Isa
Mohammed Isa
faced the same issue, anyone managed to get a good solution?
> I suspect this has something to do with the URL you're submitting to, which I assume isn't `/some-route`. What's the *exact* URL that's being used when submitting the request?...
I think the issue is because of trying to push a complex object into the page state. Once I replaced the page state with simple data, it worked without any...
At first, I thought it's because of Vue Draggable, but it has nothing to do with this problem. Actually, when the data that comes from the server contains nested arrays...
I tried to do that. It works when you replace 'columns' with an array of simple data types. For example ```php 'columns' => [1,2,3,4], ``` But this exception occurs when...
If you never change this data in your view then you will not get this exception. Once you change it in your view and you call Inertia.put this will happen....
No I am not using it
Great, I will make a repo to reproduce this issue and post the link here
Here it is: https://github.com/iamohd/inertia-exception To produce the exception, change the order of the columns by dragging them, and click on "Call Inertia.put" or "To another page" button Also, you can...
Hi @jechazelle As a temporary solution you can clone the prop into a new reactive variable and use it Just make sure u truly clone it, not making a shallow...