From 3d020b57f81f7ecc4428f1ba39b63a3c973cc159 Mon Sep 17 00:00:00 2001
From: wxiaoguang <wxiaoguang@gmail.com>
Date: Thu, 8 Jun 2023 12:23:39 +0800
Subject: [PATCH] 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.
---
 templates/post-install.tmpl | 4 ++--
 1 file 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>