feat: web oidc (#11755)

Signed-off-by: fufesou <linlong1266@gmail.com>
This commit is contained in:
fufesou
2025-05-14 17:35:50 +08:00
committed by GitHub
parent dad841e493
commit b525185d7f
2 changed files with 13 additions and 4 deletions

View File

@@ -455,10 +455,14 @@ Future<bool?> loginDialog() async {
resp.user, resp.secret, isEmailVerification);
} else {
setState(() => isInProgress = false);
// Workaround for web, close the dialog first, then show the verification code dialog.
// Otherwise, the text field will keep selecting the text and we can't input the code.
// Not sure why this happens.
if (isWeb && close != null) close(null);
final res = await verificationCodeDialog(
resp.user, resp.secret, isEmailVerification);
if (res == true) {
if (close != null) close(false);
if (!isWeb && close != null) close(false);
return;
}
}