Adjust message about offline database migration (#21460)

Tweak message about offline database migration
This commit is contained in:
Erik Montnemery 2024-07-24 13:32:27 +02:00 committed by GitHub
parent 6791e85625
commit 8911b55316
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,7 +39,13 @@ class HaInitPage extends LitElement {
</div>
<div id="loading-text">
${this.migration
? "Database migration in progress, please wait this might take some time"
? html`
Database upgrade is in progress, Home Assistant will not start
until the upgrade is completed.
<br /><br />
The upgrade may need a long time to complete, please be
patient.
`
: "Loading data"}
</div>
`;