Remove incorrect element ID on "post-install" page (#25104) (#25129)

Backport #25104 by @wxiaoguang

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.

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
pull/25151/head^2
Giteabot 1 year ago committed by GitHub
parent 0bf07a7f61
commit cb113991a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      templates/post-install.tmpl

@ -5,9 +5,9 @@
<div class="sixteen wide column content"> <div class="sixteen wide column content">
<div class="home"> <div class="home">
<div class="ui stackable middle very relaxed page grid"> <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> <div>
<img src="{{AssetUrlPrefix}}/img/loading.png"> <img src="{{AssetUrlPrefix}}/img/loading.png" alt="{{.locale.Tr "loading"}}">
</div> </div>
</div> </div>
</div> </div>

Loading…
Cancel
Save