diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2023-06-08 12:23:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-08 12:23:39 +0800 |
commit | 3d020b57f81f7ecc4428f1ba39b63a3c973cc159 (patch) | |
tree | be7dd0f5d5462f92902922baa9c44ac9e88d8d1c | |
parent | 447ee6620ff768aba49707e1cb52b7be5cd18cab (diff) | |
download | gitea-3d020b57f81f7ecc4428f1ba39b63a3c973cc159.tar.gz gitea-3d020b57f81f7ecc4428f1ba39b63a3c973cc159.zip |
Remove incorrect element ID on "post-install" page (#25104)
That ID is a "copy&paste" error, it conflicts with the
`initRepoMigrationStatusChecker` logic, which is the right function for
a real `#repo_migrating` element. That wrong ID causes incorrect page
navigation after installation.
-rw-r--r-- | templates/post-install.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/post-install.tmpl b/templates/post-install.tmpl index 7f74a4d0d2..5048b910d8 100644 --- a/templates/post-install.tmpl +++ b/templates/post-install.tmpl @@ -5,9 +5,9 @@ <div class="sixteen wide column content"> <div class="home"> <div class="ui stackable middle very relaxed page grid"> - <div id="repo_migrating" class="sixteen wide center aligned centered column"> + <div class="sixteen wide center aligned centered column"> <div> - <img src="{{AssetUrlPrefix}}/img/loading.png"> + <img src="{{AssetUrlPrefix}}/img/loading.png" alt="{{.locale.Tr "loading"}}"> </div> </div> </div> |