From cc026d4d6819fea2ffe8c868efdc1fc5246d097e Mon Sep 17 00:00:00 2001 From: librelad Date: Thu, 25 Jun 2026 21:25:38 +0100 Subject: [PATCH] fix(webui/updater): correct misleading improvements empty-state copy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 'Checking for improvements… this usually takes a minute.' implied an active scan finishing imminently. The scan is periodic and runs in the background (CFG_UPDATER_SCAN_INTERVAL, default 30m), so reword to reflect that. Kept the cadence generic since the interval is admin-configurable and not exposed here. Co-Authored-By: Claude Opus 4.8 Signed-off-by: librelad --- .../libreportal/frontend/components/updater/js/updater-page.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/libreportal/frontend/components/updater/js/updater-page.js b/containers/libreportal/frontend/components/updater/js/updater-page.js index 2208e82..960a6f7 100644 --- a/containers/libreportal/frontend/components/updater/js/updater-page.js +++ b/containers/libreportal/frontend/components/updater/js/updater-page.js @@ -345,7 +345,7 @@ class UpdaterPage { // No inline Check button on the empty state: the host auto-scan repopulates // this within a couple of minutes (and the embedding header already carries // a manual Check), so the message alone is the right, button-free empty UI. - if (!this.artifacts) return this.empty('Checking for improvements… this usually takes a minute.'); + if (!this.artifacts) return this.empty('Nothing here yet — LibrePortal checks for improvements automatically in the background.'); const list = Array.isArray(this.artifacts.artifacts) ? this.artifacts.artifacts : []; const signed = !!this.artifacts.signed; if (!list.length) return this.empty('No improvements available right now — you are all caught up. 🎉');