You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: v2/the-basics/file-uploads.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: File Uploads
3
3
---
4
4
5
-
## Formdata Conversion
5
+
## `FormData` Conversion
6
6
7
7
When making Inertia requests that include files (even nested files), Inertia will automatically convert the request data into a `FormData` object. This conversion is necessary in order to submit a `multipart/form-data` request via XHR.
Copy file name to clipboardExpand all lines: v2/the-basics/links.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,9 +65,9 @@ import { Link } from '@inertiajs/svelte'
65
65
66
66
</CodeGroup>
67
67
68
-
<Warning>
68
+
<Info>
69
69
Creating `POST`/`PUT`/`PATCH`/ `DELETE` anchor `<a>` links is discouraged as it causes "Open Link in New Tab / Window" accessibility issues. The component automatically renders a{``}`<button>` element when using these methods.
0 commit comments