-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
Fix Account linking page #33325
Fix Account linking page #33325
Conversation
We run a Gitea in our infrastructure. Since upgrade to 1.23, we found the account linking page broken. We verified backend configuration and found nowhere wrong. No custom template modification made either. I believe it's a bug as everything in account linking was fine in 1.22. |
This PR is from an org, so maintainers can't edit it. I think there are still some UI problems .... maybe they could be fixed later. Or would you like to create a PR from your personal account? Or maybe I can create a PR based on yours? |
Hi @wxiaoguang ! It should be editable by now. Could you elaborate further on UI issue? |
I will make some more fixes and try to add a test for the "link account" page. |
And added some tests in dd3a94c, to make sure it won't break again. To make backport easier, many legacy code are kept as-is. |
Fix password form missing whilst linking account even with `ENABLE_PASSWORD_SIGNIN_FORM = true`. Remove redundant empty box in account linking sign up page when `LinkAccountMode` is true. --------- Co-authored-by: wxiaoguang <[email protected]>
Backport #33325 by CrimsonEdgeHope Fix password form missing whilst linking account even with `ENABLE_PASSWORD_SIGNIN_FORM = true`. Remove redundant empty box in account linking sign up page when `LinkAccountMode` is true. Co-authored-by: CrimsonEdgeHope <[email protected]> Co-authored-by: wxiaoguang <[email protected]>
* giteaofficial/main: [skip ci] Updated licenses and gitignores Fix typo in documentation of GetBranchNames() (go-gitea#33330) Fix Account linking page (go-gitea#33325) Fix parentCommit invalid memory address or nil pointer dereference. (go-gitea#33204) Make tracked time representation display as hours (go-gitea#33315) [skip ci] Updated translations via Crowdin [skip ci] Updated translations via Crowdin Fix push message behavior (go-gitea#33215) Add golang back to nix dev environment and pin v1.23 (go-gitea#33275) Trivial fixes (go-gitea#33304)
Fix password form missing whilst linking account even with
ENABLE_PASSWORD_SIGNIN_FORM = true
.Remove redundant empty box in account linking sign up page when
LinkAccountMode
is true.