Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion authui/src/authflowv2/loading.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ export class LoadingController extends Controller {
);
// Detect if the form is controlled by turbo-form.
// We only step in if the form is NOT controlled by turbo-form.
if (turboFormController == null) {
// We also do not step in if the form is submitted to a new tab.
if (turboFormController == null && form.target !== "_blank") {
makeAllButtonPointerEventsNone();
}
}
Expand Down