-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
fix: handle target attribute on remote form redirects #15457
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
teemingc
merged 10 commits into
sveltejs:main
from
ai-man-codes:fix/remote-form-target-blank
Mar 6, 2026
+87
−0
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
702c751
fix: handle target attribute on remote form redirects
ai-man-codes e0169e7
added changeset
ai-man-codes ee1a10b
Update .changeset/stale-poets-clap.md
ai-man-codes b387b2a
Merge branch 'main' into fix/remote-form-target-blank
teemingc 0a7a758
Merge branch 'main' into fix/remote-form-target-blank
ai-man-codes 7b1c088
Merge branch 'main' into fix/remote-form-target-blank
ai-man-codes 5a1ef84
improved window opening and added test for formtarget attr on input tag
ai-man-codes be93bd5
Merge branch 'main' into fix/remote-form-target-blank
ai-man-codes 9bbef0e
Apply suggestion from @teemingc
teemingc e530b52
Merge branch 'main' into fix/remote-form-target-blank
teemingc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@sveltejs/kit': patch | ||
| --- | ||
|
|
||
| fix: handles form target attribute in remote form redirects |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
packages/kit/test/apps/async/src/routes/remote/form/redirect-target/+page.svelte
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| <script> | ||
| import { redirectForm } from './form.remote.ts'; | ||
| </script> | ||
|
|
||
| <form {...redirectForm.for('blank')} target="_blank" data-testid="form-blank"> | ||
| <button type="submit">Submit blank</button> | ||
| </form> | ||
|
|
||
| <form {...redirectForm.for('same')} data-testid="form-same"> | ||
| <button type="submit">Submit same</button> | ||
| </form> | ||
|
|
||
| <form {...redirectForm.for('input')} data-testid="form-input-blank"> | ||
| <input type="submit" formtarget="_blank" value="Submit input blank" /> | ||
| </form> | ||
1 change: 1 addition & 0 deletions
1
packages/kit/test/apps/async/src/routes/remote/form/redirect-target/destination/+page.svelte
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <h1>destination</h1> |
12 changes: 12 additions & 0 deletions
12
packages/kit/test/apps/async/src/routes/remote/form/redirect-target/form.remote.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| import { form } from '$app/server'; | ||
| import { redirect } from '@sveltejs/kit'; | ||
| import { object, optional, string } from 'valibot'; | ||
|
|
||
| export const redirectForm = form( | ||
| object({ | ||
| id: optional(string()) | ||
| }), | ||
| () => { | ||
| redirect(303, '/remote/form/redirect-target/destination'); | ||
| } | ||
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.