inertia icon indicating copy to clipboard operation
inertia copied to clipboard

Inertia.js lets you quickly build modern single-page React, Vue and Svelte apps using classic server-side routing and controllers.

Results 260 inertia issues
Sort by recently updated
recently updated
newest added

### Versions: - `@inertiajs/inertia` version: 0.10.0 - `@inertiajs/inertia-svelte` version: 0.7.4 ### Describe the problem: Occasionally in our Sentry reporting, we see the following error: ``` SecurityError: Attempt to use history.replaceState()...

svelte

### Versions: - `@inertiajs/inertia` version: 0.11.0 - `@inertiajs/inertia-react` version: 0.8.0 ### Describe the problem: The `useForm` helper only considers a submission to be successful if a `200 OK` response is...

react

### Versions: - `@inertiajs/inertia` version: ^0.11.0 - `@inertiajs/inertia-react` version: ^0.8.0 ### Describe the problem: I want to be able to show image in Facebook Open Graph. When I test my...

react

# Versions: "@inertiajs/inertia": "^0.10.1" "@inertiajs/inertia-vue3": "^0.5.2" "inertiajs/inertia-laravel": "^0.4.4" # Describe the problem: When using custom error pages (i.e 404, 500 pages) Inertia doesn't send the SharedData to the client, and...

vue 3

### Versions: "@inertiajs/inertia": "^0.11.0", "@inertiajs/inertia-vue3": "^0.6.0", ### Describe the problem: I'm sending a `form.post` request from a `contact` component to the `backend` but for whatever reason `inertia` upon success redirects...

### Versions: - `@inertiajs/inertia` version: 0.11.0 - `@inertiajs/inertia-react` version: 0.8.0 ### Describe the problem: form.isDirty returns false when updated by a function like this: ``` form.setData(function(data){ //TODO: ... example data.name...

react

### Versions: - `@inertiajs/inertia` version: 0.8.5 - `@inertiajs/inertia-vue3` version: 0.3.5 ### Describe the problem: I noticed lag/delay when I typed into inputs on my website. So to debug this, I...

vue 3

### Versions: - `@inertiajs/inertia` version: ^0.11.0 - `@inertiajs/inertia-vue3` version: ^0.6.0 ### Describe the problem: When I use `` to navigate to a new vue component, which happens to be assigned...

### Versions: - `@inertiajs/inertia` version: 0.11.0 - `@inertiajs/inertia-react` version: 0.8.0 ### Describe the problem: npm fails to install inertia.js with react version ^18.0 ### Steps to reproduce: in dependencies: ```json...

react

### Versions: "@inertiajs/inertia": "^0.11.0", "@inertiajs/inertia-vue3": "^0.6.0", ### Steps to reproduce: When I sort my `model` with `sortBy`/`sortByDesc` to send it to the frontend: $events = Events::all()->sortByDesc('date'); \Log::info($events); return inertia('events', compact('events'));...